Unnamed: 0
int64 9
832k
| id
float64 2.5B
32.1B
| type
stringclasses 1
value | created_at
stringlengths 19
19
| repo
stringlengths 7
112
| repo_url
stringlengths 36
141
| action
stringclasses 3
values | title
stringlengths 4
323
| labels
stringlengths 4
2.67k
| body
stringlengths 23
107k
| index
stringclasses 4
values | text_combine
stringlengths 96
107k
| label
stringclasses 2
values | text
stringlengths 96
56.1k
| binary_label
int64 0
1
|
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
546
| 8,551,946,557
|
IssuesEvent
|
2018-11-07 19:32:52
|
Microsoft/VFSForGit
|
https://api.github.com/repos/Microsoft/VFSForGit
|
opened
|
post-fetch: Exception while running post-fetch job: Illegal characters in path.
|
MountReliability
|
So far I'm only seeing 1 user affected by this, but it affected 3 of their enlistments
time 2018-11-07 03:25:05.3436328
MountIds:
a3ad84a5497f4002a1a9fbe8c45d225f
5b6232a0f62a42278ba6cf0c9eb58aa3
9c5d6b418003410eb1a280124b578df7
|
True
|
post-fetch: Exception while running post-fetch job: Illegal characters in path. - So far I'm only seeing 1 user affected by this, but it affected 3 of their enlistments
time 2018-11-07 03:25:05.3436328
MountIds:
a3ad84a5497f4002a1a9fbe8c45d225f
5b6232a0f62a42278ba6cf0c9eb58aa3
9c5d6b418003410eb1a280124b578df7
|
reli
|
post fetch exception while running post fetch job illegal characters in path so far i m only seeing user affected by this but it affected of their enlistments time mountids
| 1
|
297,038
| 9,159,833,153
|
IssuesEvent
|
2019-03-01 04:29:50
|
SocialMediaExchange/muhal
|
https://api.github.com/repos/SocialMediaExchange/muhal
|
closed
|
The answer for هل احتجز/احتجزت؟ does not match the airtable.
|
bug priority
|
In the Cases of Mustafa Sbeity and Tima Hayek, at least, we have noticed the answer to this question is N/A when the answer is نعم in the airtable. This doesn't seem to be a problem for the English, just the Arabic.
|
1.0
|
The answer for هل احتجز/احتجزت؟ does not match the airtable. - In the Cases of Mustafa Sbeity and Tima Hayek, at least, we have noticed the answer to this question is N/A when the answer is نعم in the airtable. This doesn't seem to be a problem for the English, just the Arabic.
|
non_reli
|
the answer for هل احتجز احتجزت؟ does not match the airtable in the cases of mustafa sbeity and tima hayek at least we have noticed the answer to this question is n a when the answer is نعم in the airtable this doesn t seem to be a problem for the english just the arabic
| 0
|
27,828
| 6,905,483,378
|
IssuesEvent
|
2017-11-27 07:21:14
|
BTDF/CodePlexDiscussions
|
https://api.github.com/repos/BTDF/CodePlexDiscussions
|
opened
|
Discussion:
Error on undeploy when app doesn
|
CodePlexMigrated
|
<b>majikandy[11/15/2017 6:03:54 PM]</b> <br />Hi,
The 5.7 version appears to have an additional stop condition on undeploy when the app doesn't exist.
This isn't too much of a problem locally. But on a build server it is a problem. This is because first time deploy will always error if we are running undeploy every time as a first step.
In version 5.0, always running undeploy first was fine because this error didn't happen as PrepareAppForUndeploy didn't have the error text line below....
<Target Name=PrepareAppForUndeploy DependsOnTargets=VerifyBizTalkAppExists>
<Error Text=BizTalk application '$(BizTalkAppName)' does not exist in the group, so there is nothing to do.
Condition='$(AppExists)' == 'false' and '$(DeploymentMode)' == 'Undeploy' />
...
For workarounds I can think of a couple of options:-
Hack the targets file to remove that Error Text line on the build agent Call VerifyBizTalkAppExists in the line before calling Undeploy from the build server and only run undeploy if it exists.
It would be nice if there was a parameter I could pass in like SkipAppNotExistsError eg.
Condition='$(SkipAppNotExistsError) == 'false' and $(AppExists)' == 'false' and '$(DeploymentMode)' == 'Undeploy' />
Or a better solution if you have one?
Many thanks
Andy
|
1.0
|
Discussion:
Error on undeploy when app doesn - <b>majikandy[11/15/2017 6:03:54 PM]</b> <br />Hi,
The 5.7 version appears to have an additional stop condition on undeploy when the app doesn't exist.
This isn't too much of a problem locally. But on a build server it is a problem. This is because first time deploy will always error if we are running undeploy every time as a first step.
In version 5.0, always running undeploy first was fine because this error didn't happen as PrepareAppForUndeploy didn't have the error text line below....
<Target Name=PrepareAppForUndeploy DependsOnTargets=VerifyBizTalkAppExists>
<Error Text=BizTalk application '$(BizTalkAppName)' does not exist in the group, so there is nothing to do.
Condition='$(AppExists)' == 'false' and '$(DeploymentMode)' == 'Undeploy' />
...
For workarounds I can think of a couple of options:-
Hack the targets file to remove that Error Text line on the build agent Call VerifyBizTalkAppExists in the line before calling Undeploy from the build server and only run undeploy if it exists.
It would be nice if there was a parameter I could pass in like SkipAppNotExistsError eg.
Condition='$(SkipAppNotExistsError) == 'false' and $(AppExists)' == 'false' and '$(DeploymentMode)' == 'Undeploy' />
Or a better solution if you have one?
Many thanks
Andy
|
non_reli
|
discussion error on undeploy when app doesn majikandy hi the version appears to have an additional stop condition on undeploy when the app doesn t exist this isn t too much of a problem locally but on a build server it is a problem this is because first time deploy will always error if we are running undeploy every time as a first step in version always running undeploy first was fine because this error didn t happen as prepareappforundeploy didn t have the error text line below error text biztalk application biztalkappname does not exist in the group so there is nothing to do condition appexists false and deploymentmode undeploy for workarounds i can think of a couple of options hack the targets file to remove that error text line on the build agent call verifybiztalkappexists in the line before calling undeploy from the build server and only run undeploy if it exists it would be nice if there was a parameter i could pass in like skipappnotexistserror eg condition skipappnotexistserror false and appexists false and deploymentmode undeploy or a better solution if you have one many thanks andy
| 0
|
2,517
| 26,005,403,706
|
IssuesEvent
|
2022-12-20 18:51:44
|
StormSurgeLive/asgs
|
https://api.github.com/repos/StormSurgeLive/asgs
|
closed
|
make `asgs_main.sh` exit with an error if `$SCRIPTDIR` is different from the `$SCRIPTDIR` in the `$STATEFILE`
|
important non-critical reliability
|
This can happen if you are running an ASGS instance in one installation (e.g., an issue-specific installation directory), stop it and try to restart it in another installation directory (e.g., production).
|
True
|
make `asgs_main.sh` exit with an error if `$SCRIPTDIR` is different from the `$SCRIPTDIR` in the `$STATEFILE` - This can happen if you are running an ASGS instance in one installation (e.g., an issue-specific installation directory), stop it and try to restart it in another installation directory (e.g., production).
|
reli
|
make asgs main sh exit with an error if scriptdir is different from the scriptdir in the statefile this can happen if you are running an asgs instance in one installation e g an issue specific installation directory stop it and try to restart it in another installation directory e g production
| 1
|
1,488
| 16,545,144,386
|
IssuesEvent
|
2021-05-27 22:34:21
|
argoproj/argo-workflows
|
https://api.github.com/repos/argoproj/argo-workflows
|
closed
|
Rate-limiting pod creation
|
enhancement epic/reliability epic/scaling
|
Creating 1000s of pods floods and overloads Kubernetes. We should be able to control the rate at which we create resources (and therefore pods).
|
True
|
Rate-limiting pod creation - Creating 1000s of pods floods and overloads Kubernetes. We should be able to control the rate at which we create resources (and therefore pods).
|
reli
|
rate limiting pod creation creating of pods floods and overloads kubernetes we should be able to control the rate at which we create resources and therefore pods
| 1
|
229,208
| 18,286,661,483
|
IssuesEvent
|
2021-10-05 11:04:20
|
DILCISBoard/eark-ip-test-corpus
|
https://api.github.com/repos/DILCISBoard/eark-ip-test-corpus
|
closed
|
CSIP72 Test Case Description
|
test case corpus package
|
**Specification:**
- **Name:** E-ARK CSIP
- **Version:** 2.0-DRAFT
- **URL:** http://earkcsip.dilcis.eu/
**Requirement:**
- **Id:** CSIP72
- **Link:** http://earkcsip.dilcis.eu/#CSIP72
**Error Level:** ERROR
**Description:**
CSIP72 | File checksum type fileSec/fileGrp/file/@CHECKSUMTYPE | The type of checksum following the value list in the standard which used for the linked file. | 1..1 MUST
-- | -- | -- | --
|
1.0
|
CSIP72 Test Case Description - **Specification:**
- **Name:** E-ARK CSIP
- **Version:** 2.0-DRAFT
- **URL:** http://earkcsip.dilcis.eu/
**Requirement:**
- **Id:** CSIP72
- **Link:** http://earkcsip.dilcis.eu/#CSIP72
**Error Level:** ERROR
**Description:**
CSIP72 | File checksum type fileSec/fileGrp/file/@CHECKSUMTYPE | The type of checksum following the value list in the standard which used for the linked file. | 1..1 MUST
-- | -- | -- | --
|
non_reli
|
test case description specification name e ark csip version draft url requirement id link error level error description file checksum type filesec filegrp file checksumtype the type of checksum following the value list in the standard which used for the linked file must
| 0
|
694,891
| 23,835,148,077
|
IssuesEvent
|
2022-09-06 04:40:10
|
googleapis/google-cloud-go
|
https://api.github.com/repos/googleapis/google-cloud-go
|
closed
|
spansql : create view gives an error : unexpected token "c"
|
api: spanner priority: p3
|
**Client**
golang spansql v1.32.0
**Go Environment**
$ go version 1.69.9
the sql
CREATE VIEW
resourceconfiguration_view SQL SECURITY INVOKER AS
SELECT c.id,r.id
FROM resourceconfiguration c
LEFT JOIN sa_service_runners r
ON r.id = c.impersonation;
The problem is c.id in the select statement . if you don't use c.id, it works , but you will need this if the tables have the same column names
we got following error
spansql_test.go:101: ParseDDL("CREATE VIEW\n resourceconfiguration_view SQL SECURITY INVOKER AS\nSELECT c.id,r.id\n FROM resourceconfiguration c\n LEFT JOIN sa_service_runners r\n ON r.id = c.impersonation;"): filename:4: unexpected token "c"
|
1.0
|
spansql : create view gives an error : unexpected token "c" - **Client**
golang spansql v1.32.0
**Go Environment**
$ go version 1.69.9
the sql
CREATE VIEW
resourceconfiguration_view SQL SECURITY INVOKER AS
SELECT c.id,r.id
FROM resourceconfiguration c
LEFT JOIN sa_service_runners r
ON r.id = c.impersonation;
The problem is c.id in the select statement . if you don't use c.id, it works , but you will need this if the tables have the same column names
we got following error
spansql_test.go:101: ParseDDL("CREATE VIEW\n resourceconfiguration_view SQL SECURITY INVOKER AS\nSELECT c.id,r.id\n FROM resourceconfiguration c\n LEFT JOIN sa_service_runners r\n ON r.id = c.impersonation;"): filename:4: unexpected token "c"
|
non_reli
|
spansql create view gives an error unexpected token c client golang spansql go environment go version the sql create view resourceconfiguration view sql security invoker as select c id r id from resourceconfiguration c left join sa service runners r on r id c impersonation the problem is c id in the select statement if you don t use c id it works but you will need this if the tables have the same column names we got following error spansql test go parseddl create view n resourceconfiguration view sql security invoker as nselect c id r id n from resourceconfiguration c n left join sa service runners r n on r id c impersonation filename unexpected token c
| 0
|
262
| 5,841,373,735
|
IssuesEvent
|
2017-05-10 00:37:01
|
dotnet/roslyn
|
https://api.github.com/repos/dotnet/roslyn
|
closed
|
Creating C# WPF apps crash VS with ArgumentNullException
|
Area-IDE Bug Tenet-Reliability
|
**Version Used**:
VSUML 26507.1
**Steps to Reproduce**:
1. Install VS with .NET Desktop Development
2. Create a new C# WPF App
**Expected Behavior**:
Project creates successfully and you are able to work on it.
**Actual Behavior**:
Project creates followed by crashing VS.
Exception:
```
CLR: Managed code called FailFast, saying "System.ArgumentNullException: Value cannot be null.
Parameter name: key
at System.Runtime.CompilerServices.ConditionalWeakTable`2.TryGetValue(TKey key, TValue& value)
at System.Runtime.CompilerServices.ConditionalWeakTable`2.GetValue(TKey key, CreateValueCallback createValueCallback)
at Microsoft.CodeAnalysis.Serialization.ChecksumCache.GetOrCreate(Object value, CreateValueCallback checksumCreator)
at Microsoft.CodeAnalysis.FindSymbols.SyntaxTreeIndex.<GetChecksumAsync>d__8.MoveNext()
--- End of stack trace from previous location where exception was thrown ---
at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
at Microsoft.CodeAnalysis.FindSymbols.SyntaxTreeIndex.<PrecalculateAsync>d__51.MoveNext()
--- End of stack trace from previous location where exception was thrown ---
at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
at Microsoft.CodeAnalysis.SolutionCrawler.SolutionCrawlerRegistrationService.WorkCoordinator.IncrementalAnalyzerProcessor.<>c__DisplayClass31_1`1.<<RunAnalyzersAsync>b__0>d.MoveNext()
--- End of stack trace from previous location where exception was thrown ---
at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
at Microsoft.CodeAnalysis.SolutionCrawler.SolutionCrawlerRegistrationService.WorkCoordinator.IncrementalAnalyzerProcessor.<GetOrDefaultAsync>d__33`2.MoveNext()"
```
|
True
|
Creating C# WPF apps crash VS with ArgumentNullException - **Version Used**:
VSUML 26507.1
**Steps to Reproduce**:
1. Install VS with .NET Desktop Development
2. Create a new C# WPF App
**Expected Behavior**:
Project creates successfully and you are able to work on it.
**Actual Behavior**:
Project creates followed by crashing VS.
Exception:
```
CLR: Managed code called FailFast, saying "System.ArgumentNullException: Value cannot be null.
Parameter name: key
at System.Runtime.CompilerServices.ConditionalWeakTable`2.TryGetValue(TKey key, TValue& value)
at System.Runtime.CompilerServices.ConditionalWeakTable`2.GetValue(TKey key, CreateValueCallback createValueCallback)
at Microsoft.CodeAnalysis.Serialization.ChecksumCache.GetOrCreate(Object value, CreateValueCallback checksumCreator)
at Microsoft.CodeAnalysis.FindSymbols.SyntaxTreeIndex.<GetChecksumAsync>d__8.MoveNext()
--- End of stack trace from previous location where exception was thrown ---
at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
at Microsoft.CodeAnalysis.FindSymbols.SyntaxTreeIndex.<PrecalculateAsync>d__51.MoveNext()
--- End of stack trace from previous location where exception was thrown ---
at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
at Microsoft.CodeAnalysis.SolutionCrawler.SolutionCrawlerRegistrationService.WorkCoordinator.IncrementalAnalyzerProcessor.<>c__DisplayClass31_1`1.<<RunAnalyzersAsync>b__0>d.MoveNext()
--- End of stack trace from previous location where exception was thrown ---
at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
at Microsoft.CodeAnalysis.SolutionCrawler.SolutionCrawlerRegistrationService.WorkCoordinator.IncrementalAnalyzerProcessor.<GetOrDefaultAsync>d__33`2.MoveNext()"
```
|
reli
|
creating c wpf apps crash vs with argumentnullexception version used vsuml steps to reproduce install vs with net desktop development create a new c wpf app expected behavior project creates successfully and you are able to work on it actual behavior project creates followed by crashing vs exception clr managed code called failfast saying system argumentnullexception value cannot be null parameter name key at system runtime compilerservices conditionalweaktable trygetvalue tkey key tvalue value at system runtime compilerservices conditionalweaktable getvalue tkey key createvaluecallback createvaluecallback at microsoft codeanalysis serialization checksumcache getorcreate object value createvaluecallback checksumcreator at microsoft codeanalysis findsymbols syntaxtreeindex d movenext end of stack trace from previous location where exception was thrown at system runtime compilerservices taskawaiter throwfornonsuccess task task at system runtime compilerservices taskawaiter handlenonsuccessanddebuggernotification task task at microsoft codeanalysis findsymbols syntaxtreeindex d movenext end of stack trace from previous location where exception was thrown at system runtime compilerservices taskawaiter throwfornonsuccess task task at system runtime compilerservices taskawaiter handlenonsuccessanddebuggernotification task task at microsoft codeanalysis solutioncrawler solutioncrawlerregistrationservice workcoordinator incrementalanalyzerprocessor c b d movenext end of stack trace from previous location where exception was thrown at system runtime compilerservices taskawaiter throwfornonsuccess task task at system runtime compilerservices taskawaiter handlenonsuccessanddebuggernotification task task at microsoft codeanalysis solutioncrawler solutioncrawlerregistrationservice workcoordinator incrementalanalyzerprocessor d movenext
| 1
|
2,774
| 27,608,623,281
|
IssuesEvent
|
2023-03-09 14:36:15
|
NVIDIA/spark-rapids
|
https://api.github.com/repos/NVIDIA/spark-rapids
|
opened
|
[FEA] Allow input split on CUDF too long exceptions
|
feature request ? - Needs Triage reliability
|
**Is your feature request related to a problem? Please describe.**
Once https://github.com/NVIDIA/spark-rapids/issues/7866 goes in we will have the ability to split input data when executing expressions. But one of the limitations with CUDF is that of a int as the index in offsets. This limits the maximum size any column can be, including strings and lists/arrays. This is especially problematic for deeply nested types.
We should have a way to catch an exception from cudf and split/retry the operation if that exception is one that indicates that the output was too long for CUDF to support. We are likely going to have to make changes to CUDF and to the CUDF JNI APIs so it is easy to tell when this happens.
|
True
|
[FEA] Allow input split on CUDF too long exceptions - **Is your feature request related to a problem? Please describe.**
Once https://github.com/NVIDIA/spark-rapids/issues/7866 goes in we will have the ability to split input data when executing expressions. But one of the limitations with CUDF is that of a int as the index in offsets. This limits the maximum size any column can be, including strings and lists/arrays. This is especially problematic for deeply nested types.
We should have a way to catch an exception from cudf and split/retry the operation if that exception is one that indicates that the output was too long for CUDF to support. We are likely going to have to make changes to CUDF and to the CUDF JNI APIs so it is easy to tell when this happens.
|
reli
|
allow input split on cudf too long exceptions is your feature request related to a problem please describe once goes in we will have the ability to split input data when executing expressions but one of the limitations with cudf is that of a int as the index in offsets this limits the maximum size any column can be including strings and lists arrays this is especially problematic for deeply nested types we should have a way to catch an exception from cudf and split retry the operation if that exception is one that indicates that the output was too long for cudf to support we are likely going to have to make changes to cudf and to the cudf jni apis so it is easy to tell when this happens
| 1
|
250,468
| 18,891,329,154
|
IssuesEvent
|
2021-11-15 13:33:14
|
aws/aws-sdk-go-v2
|
https://api.github.com/repos/aws/aws-sdk-go-v2
|
closed
|
Documentation issue for S3Uri in InputDataConfig
|
documentation response-requested closing-soon
|
**Describe the issue with documentation**
`InputDataConfig` for `StartEntitiesDetectionJob` documentation states that S3Uri should be prefixed with S3://bucketname/prefix, but when I do that I get a `ValidationException` with this message:
`2 validation errors detected: Value 'S3://mybucket/tmp/nlp/input/3e136ed6-c994-41dc-9258-36b1f16f1f13/interaction-4745004.txt' at 'inputDataConfig.s3Uri' failed to satisfy constraint: Member must satisfy regular expression pattern: s3://[a-z0-9][\.\-a-z0-9]{1,61}[a-z0-9](/.*)?; Value 'S3://mybucket/tmp/nlp/output/3e136ed6-c994-41dc-9258-36b1f16f1f13/interaction-4745004.txt' at 'outputDataConfig.s3Uri' failed to satisfy constraint: Member must satisfy regular expression pattern: s3://[a-z0-9][\.\-a-z0-9]{1,61}[a-z0-9](/.*)?`
**To Reproduce (observed behavior)**
```
jobResp, err := client.StartEntitiesDetectionJob(context.Background(), &comprehend.StartEntitiesDetectionJobInput{
DataAccessRoleArn: aws.String("arn:aws:iam::<accountNum>:role/ComprehendDataAccessRole"),
InputDataConfig: &types.InputDataConfig{
S3Uri: aws.String("S3://mybucket/tmp/nlp/output/3e136ed6-c994-41dc-9258-36b1f16f1f13/interaction-4745004.txt"),
InputFormat: "ONE_DOC_PER_FILE",
},
LanguageCode: "en",
OutputDataConfig: &types.OutputDataConfig{
S3Uri: aws.String(bucketPrefix + outputFileKey),
},
})
```
**Expected behavior**
Docs should be updated or this error should not be returned.
**Screenshots**
If applicable, add screenshots to help explain your problem.
**Additional context**
Add any other context about the problem here.
|
1.0
|
Documentation issue for S3Uri in InputDataConfig - **Describe the issue with documentation**
`InputDataConfig` for `StartEntitiesDetectionJob` documentation states that S3Uri should be prefixed with S3://bucketname/prefix, but when I do that I get a `ValidationException` with this message:
`2 validation errors detected: Value 'S3://mybucket/tmp/nlp/input/3e136ed6-c994-41dc-9258-36b1f16f1f13/interaction-4745004.txt' at 'inputDataConfig.s3Uri' failed to satisfy constraint: Member must satisfy regular expression pattern: s3://[a-z0-9][\.\-a-z0-9]{1,61}[a-z0-9](/.*)?; Value 'S3://mybucket/tmp/nlp/output/3e136ed6-c994-41dc-9258-36b1f16f1f13/interaction-4745004.txt' at 'outputDataConfig.s3Uri' failed to satisfy constraint: Member must satisfy regular expression pattern: s3://[a-z0-9][\.\-a-z0-9]{1,61}[a-z0-9](/.*)?`
**To Reproduce (observed behavior)**
```
jobResp, err := client.StartEntitiesDetectionJob(context.Background(), &comprehend.StartEntitiesDetectionJobInput{
DataAccessRoleArn: aws.String("arn:aws:iam::<accountNum>:role/ComprehendDataAccessRole"),
InputDataConfig: &types.InputDataConfig{
S3Uri: aws.String("S3://mybucket/tmp/nlp/output/3e136ed6-c994-41dc-9258-36b1f16f1f13/interaction-4745004.txt"),
InputFormat: "ONE_DOC_PER_FILE",
},
LanguageCode: "en",
OutputDataConfig: &types.OutputDataConfig{
S3Uri: aws.String(bucketPrefix + outputFileKey),
},
})
```
**Expected behavior**
Docs should be updated or this error should not be returned.
**Screenshots**
If applicable, add screenshots to help explain your problem.
**Additional context**
Add any other context about the problem here.
|
non_reli
|
documentation issue for in inputdataconfig describe the issue with documentation inputdataconfig for startentitiesdetectionjob documentation states that should be prefixed with bucketname prefix but when i do that i get a validationexception with this message validation errors detected value mybucket tmp nlp input interaction txt at inputdataconfig failed to satisfy constraint member must satisfy regular expression pattern value mybucket tmp nlp output interaction txt at outputdataconfig failed to satisfy constraint member must satisfy regular expression pattern to reproduce observed behavior jobresp err client startentitiesdetectionjob context background comprehend startentitiesdetectionjobinput dataaccessrolearn aws string arn aws iam role comprehenddataaccessrole inputdataconfig types inputdataconfig aws string mybucket tmp nlp output interaction txt inputformat one doc per file languagecode en outputdataconfig types outputdataconfig aws string bucketprefix outputfilekey expected behavior docs should be updated or this error should not be returned screenshots if applicable add screenshots to help explain your problem additional context add any other context about the problem here
| 0
|
113,090
| 17,115,727,259
|
IssuesEvent
|
2021-07-11 10:01:34
|
turkdevops/weblate
|
https://api.github.com/repos/turkdevops/weblate
|
opened
|
CVE-2020-11023 (Medium) detected in jquery-1.11.1.min.js, jquery-1.11.2.min.js
|
security vulnerability
|
## CVE-2020-11023 - Medium Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Libraries - <b>jquery-1.11.1.min.js</b>, <b>jquery-1.11.2.min.js</b></p></summary>
<p>
<details><summary><b>jquery-1.11.1.min.js</b></p></summary>
<p>JavaScript library for DOM operations</p>
<p>Library home page: <a href="https://cdnjs.cloudflare.com/ajax/libs/jquery/1.11.1/jquery.min.js">https://cdnjs.cloudflare.com/ajax/libs/jquery/1.11.1/jquery.min.js</a></p>
<p>Path to dependency file: weblate/scripts/yarn/node_modules/bootstrap-rtl/examples/rtl/input-groups.html</p>
<p>Path to vulnerable library: weblate/scripts/yarn/node_modules/bootstrap-rtl/examples/rtl/input-groups.html,weblate/scripts/yarn/node_modules/bootstrap-rtl/examples/carousel/index.html</p>
<p>
Dependency Hierarchy:
- :x: **jquery-1.11.1.min.js** (Vulnerable Library)
</details>
<details><summary><b>jquery-1.11.2.min.js</b></p></summary>
<p>JavaScript library for DOM operations</p>
<p>Library home page: <a href="https://cdnjs.cloudflare.com/ajax/libs/jquery/1.11.2/jquery.min.js">https://cdnjs.cloudflare.com/ajax/libs/jquery/1.11.2/jquery.min.js</a></p>
<p>Path to dependency file: weblate/scripts/yarn/node_modules/bootstrap-rtl/examples/originals/examples/jumbotron/index.html</p>
<p>Path to vulnerable library: weblate/scripts/yarn/node_modules/bootstrap-rtl/examples/originals/examples/jumbotron/index.html,weblate/scripts/yarn/node_modules/bootstrap-rtl/examples/originals/examples/sticky-footer-navbar/index.html,weblate/scripts/yarn/node_modules/bootstrap-rtl/examples/originals/examples/navbar/index.html,weblate/scripts/yarn/node_modules/bootstrap-rtl/examples/originals/examples/carousel/index.html,weblate/scripts/yarn/node_modules/bootstrap-rtl/examples/originals/examples/dashboard/index.html,weblate/scripts/yarn/node_modules/bootstrap-rtl/examples/originals/examples/starter-template/index.html,weblate/scripts/yarn/node_modules/bootstrap-rtl/examples/originals/examples/non-responsive/index.html,weblate/scripts/yarn/node_modules/bootstrap-rtl/examples/originals/examples/tooltip-viewport/index.html,weblate/scripts/yarn/node_modules/bootstrap-rtl/examples/originals/examples/offcanvas/index.html,weblate/scripts/yarn/node_modules/bootstrap-rtl/bootstrap/docs/examples/theme/index.html,weblate/scripts/yarn/node_modules/bootstrap-rtl/examples/originals/examples/navbar-fixed-top/index.html,weblate/scripts/yarn/node_modules/bootstrap-rtl/examples/originals/examples/navbar-static-top/index.html,weblate/scripts/yarn/node_modules/bootstrap-rtl/examples/originals/examples/theme/index.html,weblate/scripts/yarn/node_modules/bootstrap-rtl/examples/originals/examples/blog/index.html,weblate/scripts/yarn/node_modules/bootstrap-rtl/examples/originals/examples/cover/index.html</p>
<p>
Dependency Hierarchy:
- :x: **jquery-1.11.2.min.js** (Vulnerable Library)
</details>
<p>Found in HEAD commit: <a href="https://github.com/turkdevops/weblate/commit/3aa9343e44c1c7fd2f515bd352399f25838354a4">3aa9343e44c1c7fd2f515bd352399f25838354a4</a></p>
<p>Found in base branch: <b>main</b></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary>
<p>
In jQuery versions greater than or equal to 1.0.3 and before 3.5.0, passing HTML containing <option> elements from untrusted sources - even after sanitizing it - to one of jQuery's DOM manipulation methods (i.e. .html(), .append(), and others) may execute untrusted code. This problem is patched in jQuery 3.5.0.
<p>Publish Date: 2020-04-29
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2020-11023>CVE-2020-11023</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>6.1</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Network
- Attack Complexity: Low
- Privileges Required: None
- User Interaction: Required
- Scope: Changed
- Impact Metrics:
- Confidentiality Impact: Low
- Integrity Impact: Low
- Availability Impact: None
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary>
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-11023">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-11023</a></p>
<p>Release Date: 2020-04-29</p>
<p>Fix Resolution: jquery - 3.5.0</p>
</p>
</details>
<p></p>
***
Step up your Open Source Security Game with WhiteSource [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
|
True
|
CVE-2020-11023 (Medium) detected in jquery-1.11.1.min.js, jquery-1.11.2.min.js - ## CVE-2020-11023 - Medium Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Libraries - <b>jquery-1.11.1.min.js</b>, <b>jquery-1.11.2.min.js</b></p></summary>
<p>
<details><summary><b>jquery-1.11.1.min.js</b></p></summary>
<p>JavaScript library for DOM operations</p>
<p>Library home page: <a href="https://cdnjs.cloudflare.com/ajax/libs/jquery/1.11.1/jquery.min.js">https://cdnjs.cloudflare.com/ajax/libs/jquery/1.11.1/jquery.min.js</a></p>
<p>Path to dependency file: weblate/scripts/yarn/node_modules/bootstrap-rtl/examples/rtl/input-groups.html</p>
<p>Path to vulnerable library: weblate/scripts/yarn/node_modules/bootstrap-rtl/examples/rtl/input-groups.html,weblate/scripts/yarn/node_modules/bootstrap-rtl/examples/carousel/index.html</p>
<p>
Dependency Hierarchy:
- :x: **jquery-1.11.1.min.js** (Vulnerable Library)
</details>
<details><summary><b>jquery-1.11.2.min.js</b></p></summary>
<p>JavaScript library for DOM operations</p>
<p>Library home page: <a href="https://cdnjs.cloudflare.com/ajax/libs/jquery/1.11.2/jquery.min.js">https://cdnjs.cloudflare.com/ajax/libs/jquery/1.11.2/jquery.min.js</a></p>
<p>Path to dependency file: weblate/scripts/yarn/node_modules/bootstrap-rtl/examples/originals/examples/jumbotron/index.html</p>
<p>Path to vulnerable library: weblate/scripts/yarn/node_modules/bootstrap-rtl/examples/originals/examples/jumbotron/index.html,weblate/scripts/yarn/node_modules/bootstrap-rtl/examples/originals/examples/sticky-footer-navbar/index.html,weblate/scripts/yarn/node_modules/bootstrap-rtl/examples/originals/examples/navbar/index.html,weblate/scripts/yarn/node_modules/bootstrap-rtl/examples/originals/examples/carousel/index.html,weblate/scripts/yarn/node_modules/bootstrap-rtl/examples/originals/examples/dashboard/index.html,weblate/scripts/yarn/node_modules/bootstrap-rtl/examples/originals/examples/starter-template/index.html,weblate/scripts/yarn/node_modules/bootstrap-rtl/examples/originals/examples/non-responsive/index.html,weblate/scripts/yarn/node_modules/bootstrap-rtl/examples/originals/examples/tooltip-viewport/index.html,weblate/scripts/yarn/node_modules/bootstrap-rtl/examples/originals/examples/offcanvas/index.html,weblate/scripts/yarn/node_modules/bootstrap-rtl/bootstrap/docs/examples/theme/index.html,weblate/scripts/yarn/node_modules/bootstrap-rtl/examples/originals/examples/navbar-fixed-top/index.html,weblate/scripts/yarn/node_modules/bootstrap-rtl/examples/originals/examples/navbar-static-top/index.html,weblate/scripts/yarn/node_modules/bootstrap-rtl/examples/originals/examples/theme/index.html,weblate/scripts/yarn/node_modules/bootstrap-rtl/examples/originals/examples/blog/index.html,weblate/scripts/yarn/node_modules/bootstrap-rtl/examples/originals/examples/cover/index.html</p>
<p>
Dependency Hierarchy:
- :x: **jquery-1.11.2.min.js** (Vulnerable Library)
</details>
<p>Found in HEAD commit: <a href="https://github.com/turkdevops/weblate/commit/3aa9343e44c1c7fd2f515bd352399f25838354a4">3aa9343e44c1c7fd2f515bd352399f25838354a4</a></p>
<p>Found in base branch: <b>main</b></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary>
<p>
In jQuery versions greater than or equal to 1.0.3 and before 3.5.0, passing HTML containing <option> elements from untrusted sources - even after sanitizing it - to one of jQuery's DOM manipulation methods (i.e. .html(), .append(), and others) may execute untrusted code. This problem is patched in jQuery 3.5.0.
<p>Publish Date: 2020-04-29
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2020-11023>CVE-2020-11023</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>6.1</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Network
- Attack Complexity: Low
- Privileges Required: None
- User Interaction: Required
- Scope: Changed
- Impact Metrics:
- Confidentiality Impact: Low
- Integrity Impact: Low
- Availability Impact: None
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary>
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-11023">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-11023</a></p>
<p>Release Date: 2020-04-29</p>
<p>Fix Resolution: jquery - 3.5.0</p>
</p>
</details>
<p></p>
***
Step up your Open Source Security Game with WhiteSource [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
|
non_reli
|
cve medium detected in jquery min js jquery min js cve medium severity vulnerability vulnerable libraries jquery min js jquery min js jquery min js javascript library for dom operations library home page a href path to dependency file weblate scripts yarn node modules bootstrap rtl examples rtl input groups html path to vulnerable library weblate scripts yarn node modules bootstrap rtl examples rtl input groups html weblate scripts yarn node modules bootstrap rtl examples carousel index html dependency hierarchy x jquery min js vulnerable library jquery min js javascript library for dom operations library home page a href path to dependency file weblate scripts yarn node modules bootstrap rtl examples originals examples jumbotron index html path to vulnerable library weblate scripts yarn node modules bootstrap rtl examples originals examples jumbotron index html weblate scripts yarn node modules bootstrap rtl examples originals examples sticky footer navbar index html weblate scripts yarn node modules bootstrap rtl examples originals examples navbar index html weblate scripts yarn node modules bootstrap rtl examples originals examples carousel index html weblate scripts yarn node modules bootstrap rtl examples originals examples dashboard index html weblate scripts yarn node modules bootstrap rtl examples originals examples starter template index html weblate scripts yarn node modules bootstrap rtl examples originals examples non responsive index html weblate scripts yarn node modules bootstrap rtl examples originals examples tooltip viewport index html weblate scripts yarn node modules bootstrap rtl examples originals examples offcanvas index html weblate scripts yarn node modules bootstrap rtl bootstrap docs examples theme index html weblate scripts yarn node modules bootstrap rtl examples originals examples navbar fixed top index html weblate scripts yarn node modules bootstrap rtl examples originals examples navbar static top index html weblate scripts yarn node modules bootstrap rtl examples originals examples theme index html weblate scripts yarn node modules bootstrap rtl examples originals examples blog index html weblate scripts yarn node modules bootstrap rtl examples originals examples cover index html dependency hierarchy x jquery min js vulnerable library found in head commit a href found in base branch main vulnerability details in jquery versions greater than or equal to and before passing html containing elements from untrusted sources even after sanitizing it to one of jquery s dom manipulation methods i e html append and others may execute untrusted code this problem is patched in jquery publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity low privileges required none user interaction required scope changed impact metrics confidentiality impact low integrity impact low availability impact none for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution jquery step up your open source security game with whitesource
| 0
|
2,961
| 30,643,711,914
|
IssuesEvent
|
2023-07-25 01:36:49
|
crossplane/crossplane
|
https://api.github.com/repos/crossplane/crossplane
|
opened
|
Install and Upgrade reliability
|
reliability user experience roadmap package
|
### What problem are you facing?
This is a tracking Epic for the general theme of reliability during package installations and upgrades. The goals from the effort spent on this epic would be to enable Crossplane users to be able to:
* **install** packages successfully (no errors) and cleanly (all resources are healthy/running)
* **uninstall** packages successfully (no errors) and cleanly (all resources are fully removed from the cluster)
* **upgrade** packages successfully (no errors) and cleanly (all resources are transitioned from previous version to new version)
* **rollback** packages successfully (no errors) and cleanly (all resources are transitioned from current version to previous version)
Basically, we want users to be able to perform all package operations with a very high degree of confidence that the intended operation succeeds cleanly and the control plane is left in the expected resultant state of the package operation.
```[tasklist]
### Tasks
- [ ] https://github.com/crossplane/crossplane/issues/3742
- [ ] https://github.com/crossplane/crossplane/issues/3423
- [ ] https://github.com/crossplane/crossplane/issues/3985
- [ ] https://github.com/crossplane/crossplane/issues/3784
- [ ] https://github.com/crossplane/crossplane/issues/4218
- [ ] https://github.com/crossplane/crossplane/issues/4063
- [ ] https://github.com/crossplane/crossplane/issues/3598
```
|
True
|
Install and Upgrade reliability - ### What problem are you facing?
This is a tracking Epic for the general theme of reliability during package installations and upgrades. The goals from the effort spent on this epic would be to enable Crossplane users to be able to:
* **install** packages successfully (no errors) and cleanly (all resources are healthy/running)
* **uninstall** packages successfully (no errors) and cleanly (all resources are fully removed from the cluster)
* **upgrade** packages successfully (no errors) and cleanly (all resources are transitioned from previous version to new version)
* **rollback** packages successfully (no errors) and cleanly (all resources are transitioned from current version to previous version)
Basically, we want users to be able to perform all package operations with a very high degree of confidence that the intended operation succeeds cleanly and the control plane is left in the expected resultant state of the package operation.
```[tasklist]
### Tasks
- [ ] https://github.com/crossplane/crossplane/issues/3742
- [ ] https://github.com/crossplane/crossplane/issues/3423
- [ ] https://github.com/crossplane/crossplane/issues/3985
- [ ] https://github.com/crossplane/crossplane/issues/3784
- [ ] https://github.com/crossplane/crossplane/issues/4218
- [ ] https://github.com/crossplane/crossplane/issues/4063
- [ ] https://github.com/crossplane/crossplane/issues/3598
```
|
reli
|
install and upgrade reliability what problem are you facing this is a tracking epic for the general theme of reliability during package installations and upgrades the goals from the effort spent on this epic would be to enable crossplane users to be able to install packages successfully no errors and cleanly all resources are healthy running uninstall packages successfully no errors and cleanly all resources are fully removed from the cluster upgrade packages successfully no errors and cleanly all resources are transitioned from previous version to new version rollback packages successfully no errors and cleanly all resources are transitioned from current version to previous version basically we want users to be able to perform all package operations with a very high degree of confidence that the intended operation succeeds cleanly and the control plane is left in the expected resultant state of the package operation tasks
| 1
|
623
| 9,106,544,507
|
IssuesEvent
|
2019-02-21 00:19:13
|
Microsoft/VFSForGit
|
https://api.github.com/repos/Microsoft/VFSForGit
|
opened
|
Add functional tests that ensure VFS4G loads and processes persisted background tasks properly
|
macOS reliability windows
|
We currently don't have functional test coverage for the scenario where persisted (and unprocessed) background tasks are loaded and processed correctly when mounting a repo.
|
True
|
Add functional tests that ensure VFS4G loads and processes persisted background tasks properly - We currently don't have functional test coverage for the scenario where persisted (and unprocessed) background tasks are loaded and processed correctly when mounting a repo.
|
reli
|
add functional tests that ensure loads and processes persisted background tasks properly we currently don t have functional test coverage for the scenario where persisted and unprocessed background tasks are loaded and processed correctly when mounting a repo
| 1
|
30,098
| 14,405,412,846
|
IssuesEvent
|
2020-12-03 18:40:03
|
department-of-veterans-affairs/caseflow
|
https://api.github.com/repos/department-of-veterans-affairs/caseflow
|
closed
|
[IP Sprint] Research UpdatedCachedAppealsAttributes cache strategy improvements
|
Eng: Performance Type: Tech-Improvement
|
## Description
Research Dive to figure out our best options for caching the data in UpdateCachedAppealAttributes
### AC
- Which fields are prone to updating often, which arent. which external source do these pull from, how does hearings use the fields
- Which fields should stay in the job & the Postgres DB cache, which should we move to redis
- how does Caseflow currently use redis
- For any that we move to the redis cache, should we write a tighter-scoped cache priming job to do the first heavy query?
- once common changed fields are out of the job, how often does it need to run?
|
True
|
[IP Sprint] Research UpdatedCachedAppealsAttributes cache strategy improvements - ## Description
Research Dive to figure out our best options for caching the data in UpdateCachedAppealAttributes
### AC
- Which fields are prone to updating often, which arent. which external source do these pull from, how does hearings use the fields
- Which fields should stay in the job & the Postgres DB cache, which should we move to redis
- how does Caseflow currently use redis
- For any that we move to the redis cache, should we write a tighter-scoped cache priming job to do the first heavy query?
- once common changed fields are out of the job, how often does it need to run?
|
non_reli
|
research updatedcachedappealsattributes cache strategy improvements description research dive to figure out our best options for caching the data in updatecachedappealattributes ac which fields are prone to updating often which arent which external source do these pull from how does hearings use the fields which fields should stay in the job the postgres db cache which should we move to redis how does caseflow currently use redis for any that we move to the redis cache should we write a tighter scoped cache priming job to do the first heavy query once common changed fields are out of the job how often does it need to run
| 0
|
1,336
| 15,056,369,114
|
IssuesEvent
|
2021-02-03 20:04:44
|
FoundationDB/fdb-kubernetes-operator
|
https://api.github.com/repos/FoundationDB/fdb-kubernetes-operator
|
closed
|
Replacing pods when changing node selector
|
reliability
|
When the user changes the node selector in the pod spec, it has the potential to force the pod to schedule to a new node. If the cluster is running on local persistent volumes, this will leave the pod in a state where it can't schedule. I think it's safer to replace the pods when changing node selectors, rather than deleting and recreating them with the same volume.
|
True
|
Replacing pods when changing node selector - When the user changes the node selector in the pod spec, it has the potential to force the pod to schedule to a new node. If the cluster is running on local persistent volumes, this will leave the pod in a state where it can't schedule. I think it's safer to replace the pods when changing node selectors, rather than deleting and recreating them with the same volume.
|
reli
|
replacing pods when changing node selector when the user changes the node selector in the pod spec it has the potential to force the pod to schedule to a new node if the cluster is running on local persistent volumes this will leave the pod in a state where it can t schedule i think it s safer to replace the pods when changing node selectors rather than deleting and recreating them with the same volume
| 1
|
2,852
| 28,239,033,590
|
IssuesEvent
|
2023-04-06 05:02:57
|
NVIDIA/spark-rapids
|
https://api.github.com/repos/NVIDIA/spark-rapids
|
closed
|
[BUG] vector leaked when running NDS 3TB with memory restricted
|
bug reliability
|
**Describe the bug**
While trying to repro #7581 by running NDS 3TB with memory restricted to 6GB, and refcount debugging enabled, I saw the following vector leak.
```
Executor task launch worker for task 75.2 in stage 749.0 (TID 36368) 23/04/05 14:35:54:337 WARN RapidsBufferCatalog: device memory store spilling to reduce usage from 353594624 total (117886720 spillable) to 0 bytes
Executor task launch worker for task 75.2 in stage 749.0 (TID 36368) 23/04/05 14:35:54:337 WARN RapidsBufferCatalog: Targeting a host memory size of 34241851648. Current total 3072052224. Current spillable 3072052224
Cleaner Thread 23/04/05 14:35:54:340 ERROR MemoryCleaner: Leaked vector (ID: 861372): 2023-04-05 14:35:52.0426 UTC: INC
java.lang.Thread.getStackTrace(Thread.java:1559)
ai.rapids.cudf.MemoryCleaner$RefCountDebugItem.<init>(MemoryCleaner.java:333)
ai.rapids.cudf.MemoryCleaner$Cleaner.addRef(MemoryCleaner.java:91)
ai.rapids.cudf.ColumnVector.incRefCountInternal(ColumnVector.java:251)
ai.rapids.cudf.ColumnVector.<init>(ColumnVector.java:159)
ai.rapids.cudf.ColumnVector.fromViewWithContiguousAllocation(ColumnVector.java:200)
ai.rapids.cudf.Table.fromPackedTable(Table.java:3550)
ai.rapids.cudf.ContiguousTable.getTable(ContiguousTable.java:76)
com.nvidia.spark.rapids.RmmRapidsRetryIterator$.$anonfun$splitSpillableInHalfByRows$6(RmmRapidsRetryIterator.scala:591)
scala.collection.TraversableLike.$anonfun$map$1(TraversableLike.scala:286)
scala.collection.IndexedSeqOptimized.foreach(IndexedSeqOptimized.scala:36)
scala.collection.IndexedSeqOptimized.foreach$(IndexedSeqOptimized.scala:33)
scala.collection.mutable.ArrayOps$ofRef.foreach(ArrayOps.scala:198)
scala.collection.TraversableLike.map(TraversableLike.scala:286)
scala.collection.TraversableLike.map$(TraversableLike.scala:279)
scala.collection.mutable.ArrayOps$ofRef.map(ArrayOps.scala:198)
com.nvidia.spark.rapids.RmmRapidsRetryIterator$.$anonfun$splitSpillableInHalfByRows$5(RmmRapidsRetryIterator.scala:591)
com.nvidia.spark.rapids.Arm.withResource(Arm.scala:55)
com.nvidia.spark.rapids.Arm.withResource$(Arm.scala:53)
com.nvidia.spark.rapids.RmmRapidsRetryIterator$.withResource(RmmRapidsRetryIterator.scala:28)
com.nvidia.spark.rapids.RmmRapidsRetryIterator$.$anonfun$splitSpillableInHalfByRows$4(RmmRapidsRetryIterator.scala:590)
com.nvidia.spark.rapids.Arm.withResource(Arm.scala:28)
com.nvidia.spark.rapids.Arm.withResource$(Arm.scala:26)
com.nvidia.spark.rapids.RmmRapidsRetryIterator$.withResource(RmmRapidsRetryIterator.scala:28)
com.nvidia.spark.rapids.RmmRapidsRetryIterator$.$anonfun$splitSpillableInHalfByRows$3(RmmRapidsRetryIterator.scala:588)
com.nvidia.spark.rapids.Arm.withResource(Arm.scala:28)
com.nvidia.spark.rapids.Arm.withResource$(Arm.scala:26)
com.nvidia.spark.rapids.RmmRapidsRetryIterator$.withResource(RmmRapidsRetryIterator.scala:28)
com.nvidia.spark.rapids.RmmRapidsRetryIterator$.$anonfun$splitSpillableInHalfByRows$2(RmmRapidsRetryIterator.scala:587)
com.nvidia.spark.rapids.Arm.withResource(Arm.scala:28)
com.nvidia.spark.rapids.Arm.withResource$(Arm.scala:26)
com.nvidia.spark.rapids.RmmRapidsRetryIterator$.withResource(RmmRapidsRetryIterator.scala:28)
com.nvidia.spark.rapids.RmmRapidsRetryIterator$.$anonfun$splitSpillableInHalfByRows$1(RmmRapidsRetryIterator.scala:582)
com.nvidia.spark.rapids.RmmRapidsRetryIterator$AutoCloseableAttemptSpliterator.split(RmmRapidsRetryIterator.scala:414)
com.nvidia.spark.rapids.RmmRapidsRetryIterator$RmmRapidsRetryIterator.next(RmmRapidsRetryIterator.scala:519)
com.nvidia.spark.rapids.RmmRapidsRetryIterator$RmmRapidsRetryAutoCloseableIterator.next(RmmRapidsRetryIterator.scala:460)
scala.collection.Iterator.toStream(Iterator.scala:1417)
scala.collection.Iterator.toStream$(Iterator.scala:1416)
com.nvidia.spark.rapids.RmmRapidsRetryIterator$RmmRapidsRetryIterator.toStream(RmmRapidsRetryIterator.scala:479)
scala.collection.TraversableOnce.toSeq(TraversableOnce.scala:354)
scala.collection.TraversableOnce.toSeq$(TraversableOnce.scala:354)
com.nvidia.spark.rapids.RmmRapidsRetryIterator$RmmRapidsRetryIterator.toSeq(RmmRapidsRetryIterator.scala:479)
com.nvidia.spark.rapids.GpuHashAggregateIterator$AggHelper.aggregate(aggregate.scala:289)
com.nvidia.spark.rapids.GpuHashAggregateIterator$.aggregate(aggregate.scala:395)
com.nvidia.spark.rapids.GpuHashAggregateIterator$.$anonfun$computeAggregateAndClose$1(aggregate.scala:424)
com.nvidia.spark.rapids.Arm.withResource(Arm.scala:28)
com.nvidia.spark.rapids.Arm.withResource$(Arm.scala:26)
com.nvidia.spark.rapids.GpuHashAggregateIterator$.withResource(aggregate.scala:156)
com.nvidia.spark.rapids.GpuHashAggregateIterator$.computeAggregateAndClose(aggregate.scala:415)
com.nvidia.spark.rapids.GpuHashAggregateIterator.aggregateInputBatches(aggregate.scala:603)
com.nvidia.spark.rapids.GpuHashAggregateIterator.$anonfun$next$2(aggregate.scala:555)
scala.Option.getOrElse(Option.scala:189)
com.nvidia.spark.rapids.GpuHashAggregateIterator.next(aggregate.scala:552)
com.nvidia.spark.rapids.GpuHashAggregateIterator.next(aggregate.scala:497)
org.apache.spark.sql.rapids.execution.GpuShuffleExchangeExecBase$$anon$1.partNextBatch(GpuShuffleExchangeExecBase.scala:318)
org.apache.spark.sql.rapids.execution.GpuShuffleExchangeExecBase$$anon$1.hasNext(GpuShuffleExchangeExecBase.scala:340)
org.apache.spark.sql.rapids.RapidsShuffleThreadedWriterBase.$anonfun$write$2(RapidsShuffleInternalManagerBase.scala:281)
org.apache.spark.sql.rapids.RapidsShuffleThreadedWriterBase.$anonfun$write$2$adapted(RapidsShuffleInternalManagerBase.scala:274)
com.nvidia.spark.rapids.Arm.withResource(Arm.scala:28)
com.nvidia.spark.rapids.Arm.withResource$(Arm.scala:26)
org.apache.spark.sql.rapids.RapidsShuffleThreadedWriterBase.withResource(RapidsShuffleInternalManagerBase.scala:234)
org.apache.spark.sql.rapids.RapidsShuffleThreadedWriterBase.$anonfun$write$1(RapidsShuffleInternalManagerBase.scala:274)
org.apache.spark.sql.rapids.RapidsShuffleThreadedWriterBase.$anonfun$write$1$adapted(RapidsShuffleInternalManagerBase.scala:273)
com.nvidia.spark.rapids.Arm.withResource(Arm.scala:28)
com.nvidia.spark.rapids.Arm.withResource$(Arm.scala:26)
org.apache.spark.sql.rapids.RapidsShuffleThreadedWriterBase.withResource(RapidsShuffleInternalManagerBase.scala:234)
org.apache.spark.sql.rapids.RapidsShuffleThreadedWriterBase.write(RapidsShuffleInternalManagerBase.scala:273)
org.apache.spark.shuffle.ShuffleWriteProcessor.write(ShuffleWriteProcessor.scala:59)
org.apache.spark.scheduler.ShuffleMapTask.runTask(ShuffleMapTask.scala:99)
org.apache.spark.scheduler.ShuffleMapTask.runTask(ShuffleMapTask.scala:52)
org.apache.spark.scheduler.Task.run(Task.scala:131)
org.apache.spark.executor.Executor$TaskRunner.$anonfun$run$3(Executor.scala:506)
org.apache.spark.util.Utils$.tryWithSafeFinally(Utils.scala:1462)
org.apache.spark.executor.Executor$TaskRunner.run(Executor.scala:509)
java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
java.lang.Thread.run(Thread.java:748)
```
|
True
|
[BUG] vector leaked when running NDS 3TB with memory restricted - **Describe the bug**
While trying to repro #7581 by running NDS 3TB with memory restricted to 6GB, and refcount debugging enabled, I saw the following vector leak.
```
Executor task launch worker for task 75.2 in stage 749.0 (TID 36368) 23/04/05 14:35:54:337 WARN RapidsBufferCatalog: device memory store spilling to reduce usage from 353594624 total (117886720 spillable) to 0 bytes
Executor task launch worker for task 75.2 in stage 749.0 (TID 36368) 23/04/05 14:35:54:337 WARN RapidsBufferCatalog: Targeting a host memory size of 34241851648. Current total 3072052224. Current spillable 3072052224
Cleaner Thread 23/04/05 14:35:54:340 ERROR MemoryCleaner: Leaked vector (ID: 861372): 2023-04-05 14:35:52.0426 UTC: INC
java.lang.Thread.getStackTrace(Thread.java:1559)
ai.rapids.cudf.MemoryCleaner$RefCountDebugItem.<init>(MemoryCleaner.java:333)
ai.rapids.cudf.MemoryCleaner$Cleaner.addRef(MemoryCleaner.java:91)
ai.rapids.cudf.ColumnVector.incRefCountInternal(ColumnVector.java:251)
ai.rapids.cudf.ColumnVector.<init>(ColumnVector.java:159)
ai.rapids.cudf.ColumnVector.fromViewWithContiguousAllocation(ColumnVector.java:200)
ai.rapids.cudf.Table.fromPackedTable(Table.java:3550)
ai.rapids.cudf.ContiguousTable.getTable(ContiguousTable.java:76)
com.nvidia.spark.rapids.RmmRapidsRetryIterator$.$anonfun$splitSpillableInHalfByRows$6(RmmRapidsRetryIterator.scala:591)
scala.collection.TraversableLike.$anonfun$map$1(TraversableLike.scala:286)
scala.collection.IndexedSeqOptimized.foreach(IndexedSeqOptimized.scala:36)
scala.collection.IndexedSeqOptimized.foreach$(IndexedSeqOptimized.scala:33)
scala.collection.mutable.ArrayOps$ofRef.foreach(ArrayOps.scala:198)
scala.collection.TraversableLike.map(TraversableLike.scala:286)
scala.collection.TraversableLike.map$(TraversableLike.scala:279)
scala.collection.mutable.ArrayOps$ofRef.map(ArrayOps.scala:198)
com.nvidia.spark.rapids.RmmRapidsRetryIterator$.$anonfun$splitSpillableInHalfByRows$5(RmmRapidsRetryIterator.scala:591)
com.nvidia.spark.rapids.Arm.withResource(Arm.scala:55)
com.nvidia.spark.rapids.Arm.withResource$(Arm.scala:53)
com.nvidia.spark.rapids.RmmRapidsRetryIterator$.withResource(RmmRapidsRetryIterator.scala:28)
com.nvidia.spark.rapids.RmmRapidsRetryIterator$.$anonfun$splitSpillableInHalfByRows$4(RmmRapidsRetryIterator.scala:590)
com.nvidia.spark.rapids.Arm.withResource(Arm.scala:28)
com.nvidia.spark.rapids.Arm.withResource$(Arm.scala:26)
com.nvidia.spark.rapids.RmmRapidsRetryIterator$.withResource(RmmRapidsRetryIterator.scala:28)
com.nvidia.spark.rapids.RmmRapidsRetryIterator$.$anonfun$splitSpillableInHalfByRows$3(RmmRapidsRetryIterator.scala:588)
com.nvidia.spark.rapids.Arm.withResource(Arm.scala:28)
com.nvidia.spark.rapids.Arm.withResource$(Arm.scala:26)
com.nvidia.spark.rapids.RmmRapidsRetryIterator$.withResource(RmmRapidsRetryIterator.scala:28)
com.nvidia.spark.rapids.RmmRapidsRetryIterator$.$anonfun$splitSpillableInHalfByRows$2(RmmRapidsRetryIterator.scala:587)
com.nvidia.spark.rapids.Arm.withResource(Arm.scala:28)
com.nvidia.spark.rapids.Arm.withResource$(Arm.scala:26)
com.nvidia.spark.rapids.RmmRapidsRetryIterator$.withResource(RmmRapidsRetryIterator.scala:28)
com.nvidia.spark.rapids.RmmRapidsRetryIterator$.$anonfun$splitSpillableInHalfByRows$1(RmmRapidsRetryIterator.scala:582)
com.nvidia.spark.rapids.RmmRapidsRetryIterator$AutoCloseableAttemptSpliterator.split(RmmRapidsRetryIterator.scala:414)
com.nvidia.spark.rapids.RmmRapidsRetryIterator$RmmRapidsRetryIterator.next(RmmRapidsRetryIterator.scala:519)
com.nvidia.spark.rapids.RmmRapidsRetryIterator$RmmRapidsRetryAutoCloseableIterator.next(RmmRapidsRetryIterator.scala:460)
scala.collection.Iterator.toStream(Iterator.scala:1417)
scala.collection.Iterator.toStream$(Iterator.scala:1416)
com.nvidia.spark.rapids.RmmRapidsRetryIterator$RmmRapidsRetryIterator.toStream(RmmRapidsRetryIterator.scala:479)
scala.collection.TraversableOnce.toSeq(TraversableOnce.scala:354)
scala.collection.TraversableOnce.toSeq$(TraversableOnce.scala:354)
com.nvidia.spark.rapids.RmmRapidsRetryIterator$RmmRapidsRetryIterator.toSeq(RmmRapidsRetryIterator.scala:479)
com.nvidia.spark.rapids.GpuHashAggregateIterator$AggHelper.aggregate(aggregate.scala:289)
com.nvidia.spark.rapids.GpuHashAggregateIterator$.aggregate(aggregate.scala:395)
com.nvidia.spark.rapids.GpuHashAggregateIterator$.$anonfun$computeAggregateAndClose$1(aggregate.scala:424)
com.nvidia.spark.rapids.Arm.withResource(Arm.scala:28)
com.nvidia.spark.rapids.Arm.withResource$(Arm.scala:26)
com.nvidia.spark.rapids.GpuHashAggregateIterator$.withResource(aggregate.scala:156)
com.nvidia.spark.rapids.GpuHashAggregateIterator$.computeAggregateAndClose(aggregate.scala:415)
com.nvidia.spark.rapids.GpuHashAggregateIterator.aggregateInputBatches(aggregate.scala:603)
com.nvidia.spark.rapids.GpuHashAggregateIterator.$anonfun$next$2(aggregate.scala:555)
scala.Option.getOrElse(Option.scala:189)
com.nvidia.spark.rapids.GpuHashAggregateIterator.next(aggregate.scala:552)
com.nvidia.spark.rapids.GpuHashAggregateIterator.next(aggregate.scala:497)
org.apache.spark.sql.rapids.execution.GpuShuffleExchangeExecBase$$anon$1.partNextBatch(GpuShuffleExchangeExecBase.scala:318)
org.apache.spark.sql.rapids.execution.GpuShuffleExchangeExecBase$$anon$1.hasNext(GpuShuffleExchangeExecBase.scala:340)
org.apache.spark.sql.rapids.RapidsShuffleThreadedWriterBase.$anonfun$write$2(RapidsShuffleInternalManagerBase.scala:281)
org.apache.spark.sql.rapids.RapidsShuffleThreadedWriterBase.$anonfun$write$2$adapted(RapidsShuffleInternalManagerBase.scala:274)
com.nvidia.spark.rapids.Arm.withResource(Arm.scala:28)
com.nvidia.spark.rapids.Arm.withResource$(Arm.scala:26)
org.apache.spark.sql.rapids.RapidsShuffleThreadedWriterBase.withResource(RapidsShuffleInternalManagerBase.scala:234)
org.apache.spark.sql.rapids.RapidsShuffleThreadedWriterBase.$anonfun$write$1(RapidsShuffleInternalManagerBase.scala:274)
org.apache.spark.sql.rapids.RapidsShuffleThreadedWriterBase.$anonfun$write$1$adapted(RapidsShuffleInternalManagerBase.scala:273)
com.nvidia.spark.rapids.Arm.withResource(Arm.scala:28)
com.nvidia.spark.rapids.Arm.withResource$(Arm.scala:26)
org.apache.spark.sql.rapids.RapidsShuffleThreadedWriterBase.withResource(RapidsShuffleInternalManagerBase.scala:234)
org.apache.spark.sql.rapids.RapidsShuffleThreadedWriterBase.write(RapidsShuffleInternalManagerBase.scala:273)
org.apache.spark.shuffle.ShuffleWriteProcessor.write(ShuffleWriteProcessor.scala:59)
org.apache.spark.scheduler.ShuffleMapTask.runTask(ShuffleMapTask.scala:99)
org.apache.spark.scheduler.ShuffleMapTask.runTask(ShuffleMapTask.scala:52)
org.apache.spark.scheduler.Task.run(Task.scala:131)
org.apache.spark.executor.Executor$TaskRunner.$anonfun$run$3(Executor.scala:506)
org.apache.spark.util.Utils$.tryWithSafeFinally(Utils.scala:1462)
org.apache.spark.executor.Executor$TaskRunner.run(Executor.scala:509)
java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
java.lang.Thread.run(Thread.java:748)
```
|
reli
|
vector leaked when running nds with memory restricted describe the bug while trying to repro by running nds with memory restricted to and refcount debugging enabled i saw the following vector leak executor task launch worker for task in stage tid warn rapidsbuffercatalog device memory store spilling to reduce usage from total spillable to bytes executor task launch worker for task in stage tid warn rapidsbuffercatalog targeting a host memory size of current total current spillable cleaner thread error memorycleaner leaked vector id utc inc java lang thread getstacktrace thread java ai rapids cudf memorycleaner refcountdebugitem memorycleaner java ai rapids cudf memorycleaner cleaner addref memorycleaner java ai rapids cudf columnvector increfcountinternal columnvector java ai rapids cudf columnvector columnvector java ai rapids cudf columnvector fromviewwithcontiguousallocation columnvector java ai rapids cudf table frompackedtable table java ai rapids cudf contiguoustable gettable contiguoustable java com nvidia spark rapids rmmrapidsretryiterator anonfun splitspillableinhalfbyrows rmmrapidsretryiterator scala scala collection traversablelike anonfun map traversablelike scala scala collection indexedseqoptimized foreach indexedseqoptimized scala scala collection indexedseqoptimized foreach indexedseqoptimized scala scala collection mutable arrayops ofref foreach arrayops scala scala collection traversablelike map traversablelike scala scala collection traversablelike map traversablelike scala scala collection mutable arrayops ofref map arrayops scala com nvidia spark rapids rmmrapidsretryiterator anonfun splitspillableinhalfbyrows rmmrapidsretryiterator scala com nvidia spark rapids arm withresource arm scala com nvidia spark rapids arm withresource arm scala com nvidia spark rapids rmmrapidsretryiterator withresource rmmrapidsretryiterator scala com nvidia spark rapids rmmrapidsretryiterator anonfun splitspillableinhalfbyrows rmmrapidsretryiterator scala com nvidia spark rapids arm withresource arm scala com nvidia spark rapids arm withresource arm scala com nvidia spark rapids rmmrapidsretryiterator withresource rmmrapidsretryiterator scala com nvidia spark rapids rmmrapidsretryiterator anonfun splitspillableinhalfbyrows rmmrapidsretryiterator scala com nvidia spark rapids arm withresource arm scala com nvidia spark rapids arm withresource arm scala com nvidia spark rapids rmmrapidsretryiterator withresource rmmrapidsretryiterator scala com nvidia spark rapids rmmrapidsretryiterator anonfun splitspillableinhalfbyrows rmmrapidsretryiterator scala com nvidia spark rapids arm withresource arm scala com nvidia spark rapids arm withresource arm scala com nvidia spark rapids rmmrapidsretryiterator withresource rmmrapidsretryiterator scala com nvidia spark rapids rmmrapidsretryiterator anonfun splitspillableinhalfbyrows rmmrapidsretryiterator scala com nvidia spark rapids rmmrapidsretryiterator autocloseableattemptspliterator split rmmrapidsretryiterator scala com nvidia spark rapids rmmrapidsretryiterator rmmrapidsretryiterator next rmmrapidsretryiterator scala com nvidia spark rapids rmmrapidsretryiterator rmmrapidsretryautocloseableiterator next rmmrapidsretryiterator scala scala collection iterator tostream iterator scala scala collection iterator tostream iterator scala com nvidia spark rapids rmmrapidsretryiterator rmmrapidsretryiterator tostream rmmrapidsretryiterator scala scala collection traversableonce toseq traversableonce scala scala collection traversableonce toseq traversableonce scala com nvidia spark rapids rmmrapidsretryiterator rmmrapidsretryiterator toseq rmmrapidsretryiterator scala com nvidia spark rapids gpuhashaggregateiterator agghelper aggregate aggregate scala com nvidia spark rapids gpuhashaggregateiterator aggregate aggregate scala com nvidia spark rapids gpuhashaggregateiterator anonfun computeaggregateandclose aggregate scala com nvidia spark rapids arm withresource arm scala com nvidia spark rapids arm withresource arm scala com nvidia spark rapids gpuhashaggregateiterator withresource aggregate scala com nvidia spark rapids gpuhashaggregateiterator computeaggregateandclose aggregate scala com nvidia spark rapids gpuhashaggregateiterator aggregateinputbatches aggregate scala com nvidia spark rapids gpuhashaggregateiterator anonfun next aggregate scala scala option getorelse option scala com nvidia spark rapids gpuhashaggregateiterator next aggregate scala com nvidia spark rapids gpuhashaggregateiterator next aggregate scala org apache spark sql rapids execution gpushuffleexchangeexecbase anon partnextbatch gpushuffleexchangeexecbase scala org apache spark sql rapids execution gpushuffleexchangeexecbase anon hasnext gpushuffleexchangeexecbase scala org apache spark sql rapids rapidsshufflethreadedwriterbase anonfun write rapidsshuffleinternalmanagerbase scala org apache spark sql rapids rapidsshufflethreadedwriterbase anonfun write adapted rapidsshuffleinternalmanagerbase scala com nvidia spark rapids arm withresource arm scala com nvidia spark rapids arm withresource arm scala org apache spark sql rapids rapidsshufflethreadedwriterbase withresource rapidsshuffleinternalmanagerbase scala org apache spark sql rapids rapidsshufflethreadedwriterbase anonfun write rapidsshuffleinternalmanagerbase scala org apache spark sql rapids rapidsshufflethreadedwriterbase anonfun write adapted rapidsshuffleinternalmanagerbase scala com nvidia spark rapids arm withresource arm scala com nvidia spark rapids arm withresource arm scala org apache spark sql rapids rapidsshufflethreadedwriterbase withresource rapidsshuffleinternalmanagerbase scala org apache spark sql rapids rapidsshufflethreadedwriterbase write rapidsshuffleinternalmanagerbase scala org apache spark shuffle shufflewriteprocessor write shufflewriteprocessor scala org apache spark scheduler shufflemaptask runtask shufflemaptask scala org apache spark scheduler shufflemaptask runtask shufflemaptask scala org apache spark scheduler task run task scala org apache spark executor executor taskrunner anonfun run executor scala org apache spark util utils trywithsafefinally utils scala org apache spark executor executor taskrunner run executor scala java util concurrent threadpoolexecutor runworker threadpoolexecutor java java util concurrent threadpoolexecutor worker run threadpoolexecutor java java lang thread run thread java
| 1
|
274,708
| 23,859,360,102
|
IssuesEvent
|
2022-09-07 05:04:51
|
godotengine/godot
|
https://api.github.com/repos/godotengine/godot
|
opened
|
Very random crashes when executing `SubViewport.set_size_2d_override_stretch`
|
bug topic:rendering needs testing crash
|
### Godot version
4.0.alpha.custom_build. 4b164b8e4
### System information
Ubuntu 22.04 - Nvidia GTX 970, Gnome shell 42 X11
### Issue description
When executing random SubViewport function, then after a while(usually after 30min of project running), I have this crash
```
drivers/vulkan/rendering_device_vulkan.cpp:9014:68: runtime error: index 8 out of bounds for type 'VkSampleCountFlagBits [7]'
=================================================================
==15042==ERROR: AddressSanitizer: global-buffer-overflow on address 0x55605079d800 at pc 0x55603a80e2e2 bp 0x7ffd22933f40 sp 0x7ffd22933f30
READ of size 4 at 0x55605079d800 thread T0
#0 0x55603a80e2e1 in RenderingDeviceVulkan::_ensure_supported_sample_count(RenderingDevice::TextureSamples) const drivers/vulkan/rendering_device_vulkan.cpp:9014
#1 0x55603a70ddf7 in RenderingDeviceVulkan::texture_create(RenderingDevice::TextureFormat const&, RenderingDevice::TextureView const&, Vector<Vector<unsigned char> > const&) drivers/vulkan/rendering_device_vulkan.cpp:1736
#2 0x556048cf51ea in RendererRD::TextureStorage::_update_render_target(RendererRD::TextureStorage::RenderTarget*) servers/rendering/renderer_rd/storage_rd/texture_storage.cpp:2203
#3 0x556048cfbf37 in RendererRD::TextureStorage::render_target_set_size(RID, int, int, unsigned int) servers/rendering/renderer_rd/storage_rd/texture_storage.cpp:2329
#4 0x55604a4e467f in RendererViewport::viewport_set_size(RID, int, int) servers/rendering/renderer_viewport.cpp:840
#5 0x556047e52272 in RenderingServerDefault::viewport_set_size(RID, int, int) servers/rendering/rendering_server_default.h:583
#6 0x5560419a3c13 in Viewport::_set_size(Vector2i const&, Vector2i const&, Rect2i const&, Transform2D const&, bool) scene/main/viewport.cpp:799
#7 0x556041a5ac96 in SubViewport::set_size_2d_override_stretch(bool) scene/main/viewport.cpp:4072
#8 0x556033940369 in void call_with_variant_args_helper<__UnexistingClass, bool, 0ul>(__UnexistingClass*, void (__UnexistingClass::*)(bool), Variant const**, Callable::CallError&, IndexSequence<0ul>) core/variant/binder_common.h:262
#9 0x556033939049 in void call_with_variant_args_dv<__UnexistingClass, bool>(__UnexistingClass*, void (__UnexistingClass::*)(bool), Variant const**, int, Callable::CallError&, Vector<Variant> const&) core/variant/binder_common.h:409
#10 0x556033932620 in MethodBindT<bool>::call(Object*, Variant const**, int, Callable::CallError&) core/object/method_bind.h:320
#11 0x55604c4be894 in Object::callp(StringName const&, Variant const**, int, Callable::CallError&) core/object/object.cpp:733
#12 0x55604c4bd0cb in Object::callv(StringName const&, Array const&) core/object/object.cpp:670
#13 0x55604c53b02c in void call_with_variant_args_ret_helper<__UnexistingClass, Variant, StringName const&, Array const&, 0ul, 1ul>(__UnexistingClass*, Variant (__UnexistingClass::*)(StringName const&, Array const&), Variant const**, Variant&, Callable::CallError&, IndexSequence<0ul, 1ul>) core/variant/binder_common.h:680
#14 0x55604c534415 in void call_with_variant_args_ret_dv<__UnexistingClass, Variant, StringName const&, Array const&>(__UnexistingClass*, Variant (__UnexistingClass::*)(StringName const&, Array const&), Variant const**, int, Variant&, Callable::CallError&, Vector<Variant> const&) core/variant/binder_common.h:493
#15 0x55604c52c80e in MethodBindTR<Variant, StringName const&, Array const&>::call(Object*, Variant const**, int, Callable::CallError&) core/object/method_bind.h:481
#16 0x5560357d6917 in GDScriptFunction::call(GDScriptInstance*, Variant const**, int, Callable::CallError&, GDScriptFunction::CallState*) modules/gdscript/gdscript_vm.cpp:1644
#17 0x55603520bc71 in GDScriptInstance::callp(StringName const&, Variant const**, int, Callable::CallError&) modules/gdscript/gdscript.cpp:1627
#18 0x55604c4be497 in Object::callp(StringName const&, Variant const**, int, Callable::CallError&) core/object/object.cpp:711
#19 0x55604ba76de7 in Variant::callp(StringName const&, Variant const**, int, Variant&, Callable::CallError&) core/variant/variant_call.cpp:1048
#20 0x5560357d444c in GDScriptFunction::call(GDScriptInstance*, Variant const**, int, Callable::CallError&, GDScriptFunction::CallState*) modules/gdscript/gdscript_vm.cpp:1555
#21 0x55603520bc71 in GDScriptInstance::callp(StringName const&, Variant const**, int, Callable::CallError&) modules/gdscript/gdscript.cpp:1627
#22 0x5560417eb4c9 in bool Node::_gdvirtual__process_call<false>(double) scene/main/node.h:237
#23 0x556041750f92 in Node::_notification(int) scene/main/node.cpp:56
#24 0x556033e00319 in Node::_notificationv(int, bool) scene/main/node.h:45
#25 0x55604c4bfd71 in Object::notification(int, bool) core/object/object.cpp:790
#26 0x5560418aba3a in SceneTree::_notify_group_pause(StringName const&, int) scene/main/scene_tree.cpp:917
#27 0x55604189c717 in SceneTree::process(double) scene/main/scene_tree.cpp:465
#28 0x5560336e7c39 in Main::iteration() main/main.cpp:2992
#29 0x55603352caf3 in OS_LinuxBSD::run() platform/linuxbsd/os_linuxbsd.cpp:538
#30 0x556033513892 in main platform/linuxbsd/godot_linuxbsd.cpp:72
#31 0x7fec82c06082 in __libc_start_main (/lib/x86_64-linux-gnu/libc.so.6+0x24082)
#32 0x55603351332d in _start (/home/runner/work/Qarminer/Qarminer/godot.linuxbsd.tools.x86_64.san+0x36e3632d)
0x55605079d800 is located 4 bytes to the right of global variable 'rasterization_sample_count' defined in 'drivers/vulkan/rendering_device_vulkan.cpp:1233:29' (0x55605079d7e0) of size 28
0x55605079d800 is located 32 bytes to the left of global variable 'logic_operations' defined in 'drivers/vulkan/rendering_device_vulkan.cpp:1243:17' (0x55605079d820) of size 64
```
This may be regression(probably happens max ~1 month)
https://github.com/godotengine/godot/blob/02d510bd079b0730f14680f75a1325ce1da0ac09/drivers/vulkan/rendering_device_vulkan.cpp#L9014
### Steps to reproduce
Not easily reproducible
### Minimal reproduction project
_No response_
|
1.0
|
Very random crashes when executing `SubViewport.set_size_2d_override_stretch` - ### Godot version
4.0.alpha.custom_build. 4b164b8e4
### System information
Ubuntu 22.04 - Nvidia GTX 970, Gnome shell 42 X11
### Issue description
When executing random SubViewport function, then after a while(usually after 30min of project running), I have this crash
```
drivers/vulkan/rendering_device_vulkan.cpp:9014:68: runtime error: index 8 out of bounds for type 'VkSampleCountFlagBits [7]'
=================================================================
==15042==ERROR: AddressSanitizer: global-buffer-overflow on address 0x55605079d800 at pc 0x55603a80e2e2 bp 0x7ffd22933f40 sp 0x7ffd22933f30
READ of size 4 at 0x55605079d800 thread T0
#0 0x55603a80e2e1 in RenderingDeviceVulkan::_ensure_supported_sample_count(RenderingDevice::TextureSamples) const drivers/vulkan/rendering_device_vulkan.cpp:9014
#1 0x55603a70ddf7 in RenderingDeviceVulkan::texture_create(RenderingDevice::TextureFormat const&, RenderingDevice::TextureView const&, Vector<Vector<unsigned char> > const&) drivers/vulkan/rendering_device_vulkan.cpp:1736
#2 0x556048cf51ea in RendererRD::TextureStorage::_update_render_target(RendererRD::TextureStorage::RenderTarget*) servers/rendering/renderer_rd/storage_rd/texture_storage.cpp:2203
#3 0x556048cfbf37 in RendererRD::TextureStorage::render_target_set_size(RID, int, int, unsigned int) servers/rendering/renderer_rd/storage_rd/texture_storage.cpp:2329
#4 0x55604a4e467f in RendererViewport::viewport_set_size(RID, int, int) servers/rendering/renderer_viewport.cpp:840
#5 0x556047e52272 in RenderingServerDefault::viewport_set_size(RID, int, int) servers/rendering/rendering_server_default.h:583
#6 0x5560419a3c13 in Viewport::_set_size(Vector2i const&, Vector2i const&, Rect2i const&, Transform2D const&, bool) scene/main/viewport.cpp:799
#7 0x556041a5ac96 in SubViewport::set_size_2d_override_stretch(bool) scene/main/viewport.cpp:4072
#8 0x556033940369 in void call_with_variant_args_helper<__UnexistingClass, bool, 0ul>(__UnexistingClass*, void (__UnexistingClass::*)(bool), Variant const**, Callable::CallError&, IndexSequence<0ul>) core/variant/binder_common.h:262
#9 0x556033939049 in void call_with_variant_args_dv<__UnexistingClass, bool>(__UnexistingClass*, void (__UnexistingClass::*)(bool), Variant const**, int, Callable::CallError&, Vector<Variant> const&) core/variant/binder_common.h:409
#10 0x556033932620 in MethodBindT<bool>::call(Object*, Variant const**, int, Callable::CallError&) core/object/method_bind.h:320
#11 0x55604c4be894 in Object::callp(StringName const&, Variant const**, int, Callable::CallError&) core/object/object.cpp:733
#12 0x55604c4bd0cb in Object::callv(StringName const&, Array const&) core/object/object.cpp:670
#13 0x55604c53b02c in void call_with_variant_args_ret_helper<__UnexistingClass, Variant, StringName const&, Array const&, 0ul, 1ul>(__UnexistingClass*, Variant (__UnexistingClass::*)(StringName const&, Array const&), Variant const**, Variant&, Callable::CallError&, IndexSequence<0ul, 1ul>) core/variant/binder_common.h:680
#14 0x55604c534415 in void call_with_variant_args_ret_dv<__UnexistingClass, Variant, StringName const&, Array const&>(__UnexistingClass*, Variant (__UnexistingClass::*)(StringName const&, Array const&), Variant const**, int, Variant&, Callable::CallError&, Vector<Variant> const&) core/variant/binder_common.h:493
#15 0x55604c52c80e in MethodBindTR<Variant, StringName const&, Array const&>::call(Object*, Variant const**, int, Callable::CallError&) core/object/method_bind.h:481
#16 0x5560357d6917 in GDScriptFunction::call(GDScriptInstance*, Variant const**, int, Callable::CallError&, GDScriptFunction::CallState*) modules/gdscript/gdscript_vm.cpp:1644
#17 0x55603520bc71 in GDScriptInstance::callp(StringName const&, Variant const**, int, Callable::CallError&) modules/gdscript/gdscript.cpp:1627
#18 0x55604c4be497 in Object::callp(StringName const&, Variant const**, int, Callable::CallError&) core/object/object.cpp:711
#19 0x55604ba76de7 in Variant::callp(StringName const&, Variant const**, int, Variant&, Callable::CallError&) core/variant/variant_call.cpp:1048
#20 0x5560357d444c in GDScriptFunction::call(GDScriptInstance*, Variant const**, int, Callable::CallError&, GDScriptFunction::CallState*) modules/gdscript/gdscript_vm.cpp:1555
#21 0x55603520bc71 in GDScriptInstance::callp(StringName const&, Variant const**, int, Callable::CallError&) modules/gdscript/gdscript.cpp:1627
#22 0x5560417eb4c9 in bool Node::_gdvirtual__process_call<false>(double) scene/main/node.h:237
#23 0x556041750f92 in Node::_notification(int) scene/main/node.cpp:56
#24 0x556033e00319 in Node::_notificationv(int, bool) scene/main/node.h:45
#25 0x55604c4bfd71 in Object::notification(int, bool) core/object/object.cpp:790
#26 0x5560418aba3a in SceneTree::_notify_group_pause(StringName const&, int) scene/main/scene_tree.cpp:917
#27 0x55604189c717 in SceneTree::process(double) scene/main/scene_tree.cpp:465
#28 0x5560336e7c39 in Main::iteration() main/main.cpp:2992
#29 0x55603352caf3 in OS_LinuxBSD::run() platform/linuxbsd/os_linuxbsd.cpp:538
#30 0x556033513892 in main platform/linuxbsd/godot_linuxbsd.cpp:72
#31 0x7fec82c06082 in __libc_start_main (/lib/x86_64-linux-gnu/libc.so.6+0x24082)
#32 0x55603351332d in _start (/home/runner/work/Qarminer/Qarminer/godot.linuxbsd.tools.x86_64.san+0x36e3632d)
0x55605079d800 is located 4 bytes to the right of global variable 'rasterization_sample_count' defined in 'drivers/vulkan/rendering_device_vulkan.cpp:1233:29' (0x55605079d7e0) of size 28
0x55605079d800 is located 32 bytes to the left of global variable 'logic_operations' defined in 'drivers/vulkan/rendering_device_vulkan.cpp:1243:17' (0x55605079d820) of size 64
```
This may be regression(probably happens max ~1 month)
https://github.com/godotengine/godot/blob/02d510bd079b0730f14680f75a1325ce1da0ac09/drivers/vulkan/rendering_device_vulkan.cpp#L9014
### Steps to reproduce
Not easily reproducible
### Minimal reproduction project
_No response_
|
non_reli
|
very random crashes when executing subviewport set size override stretch godot version alpha custom build system information ubuntu nvidia gtx gnome shell issue description when executing random subviewport function then after a while usually after of project running i have this crash drivers vulkan rendering device vulkan cpp runtime error index out of bounds for type vksamplecountflagbits error addresssanitizer global buffer overflow on address at pc bp sp read of size at thread in renderingdevicevulkan ensure supported sample count renderingdevice texturesamples const drivers vulkan rendering device vulkan cpp in renderingdevicevulkan texture create renderingdevice textureformat const renderingdevice textureview const vector const drivers vulkan rendering device vulkan cpp in rendererrd texturestorage update render target rendererrd texturestorage rendertarget servers rendering renderer rd storage rd texture storage cpp in rendererrd texturestorage render target set size rid int int unsigned int servers rendering renderer rd storage rd texture storage cpp in rendererviewport viewport set size rid int int servers rendering renderer viewport cpp in renderingserverdefault viewport set size rid int int servers rendering rendering server default h in viewport set size const const const const bool scene main viewport cpp in subviewport set size override stretch bool scene main viewport cpp in void call with variant args helper unexistingclass void unexistingclass bool variant const callable callerror indexsequence core variant binder common h in void call with variant args dv unexistingclass void unexistingclass bool variant const int callable callerror vector const core variant binder common h in methodbindt call object variant const int callable callerror core object method bind h in object callp stringname const variant const int callable callerror core object object cpp in object callv stringname const array const core object object cpp in void call with variant args ret helper unexistingclass variant unexistingclass stringname const array const variant const variant callable callerror indexsequence core variant binder common h in void call with variant args ret dv unexistingclass variant unexistingclass stringname const array const variant const int variant callable callerror vector const core variant binder common h in methodbindtr call object variant const int callable callerror core object method bind h in gdscriptfunction call gdscriptinstance variant const int callable callerror gdscriptfunction callstate modules gdscript gdscript vm cpp in gdscriptinstance callp stringname const variant const int callable callerror modules gdscript gdscript cpp in object callp stringname const variant const int callable callerror core object object cpp in variant callp stringname const variant const int variant callable callerror core variant variant call cpp in gdscriptfunction call gdscriptinstance variant const int callable callerror gdscriptfunction callstate modules gdscript gdscript vm cpp in gdscriptinstance callp stringname const variant const int callable callerror modules gdscript gdscript cpp in bool node gdvirtual process call double scene main node h in node notification int scene main node cpp in node notificationv int bool scene main node h in object notification int bool core object object cpp in scenetree notify group pause stringname const int scene main scene tree cpp in scenetree process double scene main scene tree cpp in main iteration main main cpp in os linuxbsd run platform linuxbsd os linuxbsd cpp in main platform linuxbsd godot linuxbsd cpp in libc start main lib linux gnu libc so in start home runner work qarminer qarminer godot linuxbsd tools san is located bytes to the right of global variable rasterization sample count defined in drivers vulkan rendering device vulkan cpp of size is located bytes to the left of global variable logic operations defined in drivers vulkan rendering device vulkan cpp of size this may be regression probably happens max month steps to reproduce not easily reproducible minimal reproduction project no response
| 0
|
255,958
| 8,126,602,019
|
IssuesEvent
|
2018-08-17 03:17:34
|
aowen87/BAR
|
https://api.github.com/repos/aowen87/BAR
|
closed
|
add support for pvtk files that group legacy vtk.
|
Bug Likelihood: 3 - Occasional Priority: Normal Severity: 3 - Major Irritation
|
add support for pvtk files with pieces that are legacy vtk files.
example pvtk file:
<pre>
<File version="pvtk-1.0"
dataType="vtkUnstructuredGrid"
numberOfPieces=" 2 ">
<Piece fileName="p1.vtk" />
<Piece fileName="p2.vtk" />
</File>
</pre>
-----------------------REDMINE MIGRATION-----------------------
This ticket was migrated from Redmine. As such, not all
information was able to be captured in the transition. Below is
a complete record of the original redmine ticket.
Ticket number: 2815
Status: Resolved
Project: VisIt
Tracker: Bug
Priority: Normal
Subject: add support for pvtk files that group legacy vtk.
Assigned to: Kathleen Biagas
Category:
Target version: 2.13.0
Author: Cyrus Harrison
Start: 05/05/2017
Due date:
% Done: 100
Estimated time: 4.0
Created: 05/05/2017 12:46 pm
Updated: 09/21/2017 06:13 pm
Likelihood: 3 - Occasional
Severity: 3 - Major Irritation
Found in version: 2.12.1
Impact:
Expected Use:
OS: All
Support Group: Any
Description:
add support for pvtk files with pieces that are legacy vtk files.
example pvtk file:
<pre>
<File version="pvtk-1.0"
dataType="vtkUnstructuredGrid"
numberOfPieces=" 2 ">
<Piece fileName="p1.vtk" />
<Piece fileName="p2.vtk" />
</File>
</pre>
Comments:
this case can be done easily with a .visit file as well, but we should have out of the box support for pvtk.
I believe the vtkPDataSetReader class in VTK's IO/Parallel can be utilized for this, modified possibly for the way VisIt handles files.
Created a Parser for pvtk files, and added it to VTK reader.M databases/VTK/VTKPluginInfo.CA databases/VTK/PVTKParser.CM databases/VTK/avtVTKFileReader.CA databases/VTK/PVTKParser.hM databases/VTK/VTK.xmlM databases/VTK/CMakeLists.txt
|
1.0
|
add support for pvtk files that group legacy vtk. - add support for pvtk files with pieces that are legacy vtk files.
example pvtk file:
<pre>
<File version="pvtk-1.0"
dataType="vtkUnstructuredGrid"
numberOfPieces=" 2 ">
<Piece fileName="p1.vtk" />
<Piece fileName="p2.vtk" />
</File>
</pre>
-----------------------REDMINE MIGRATION-----------------------
This ticket was migrated from Redmine. As such, not all
information was able to be captured in the transition. Below is
a complete record of the original redmine ticket.
Ticket number: 2815
Status: Resolved
Project: VisIt
Tracker: Bug
Priority: Normal
Subject: add support for pvtk files that group legacy vtk.
Assigned to: Kathleen Biagas
Category:
Target version: 2.13.0
Author: Cyrus Harrison
Start: 05/05/2017
Due date:
% Done: 100
Estimated time: 4.0
Created: 05/05/2017 12:46 pm
Updated: 09/21/2017 06:13 pm
Likelihood: 3 - Occasional
Severity: 3 - Major Irritation
Found in version: 2.12.1
Impact:
Expected Use:
OS: All
Support Group: Any
Description:
add support for pvtk files with pieces that are legacy vtk files.
example pvtk file:
<pre>
<File version="pvtk-1.0"
dataType="vtkUnstructuredGrid"
numberOfPieces=" 2 ">
<Piece fileName="p1.vtk" />
<Piece fileName="p2.vtk" />
</File>
</pre>
Comments:
this case can be done easily with a .visit file as well, but we should have out of the box support for pvtk.
I believe the vtkPDataSetReader class in VTK's IO/Parallel can be utilized for this, modified possibly for the way VisIt handles files.
Created a Parser for pvtk files, and added it to VTK reader.M databases/VTK/VTKPluginInfo.CA databases/VTK/PVTKParser.CM databases/VTK/avtVTKFileReader.CA databases/VTK/PVTKParser.hM databases/VTK/VTK.xmlM databases/VTK/CMakeLists.txt
|
non_reli
|
add support for pvtk files that group legacy vtk add support for pvtk files with pieces that are legacy vtk files example pvtk file file version pvtk datatype vtkunstructuredgrid numberofpieces redmine migration this ticket was migrated from redmine as such not all information was able to be captured in the transition below is a complete record of the original redmine ticket ticket number status resolved project visit tracker bug priority normal subject add support for pvtk files that group legacy vtk assigned to kathleen biagas category target version author cyrus harrison start due date done estimated time created pm updated pm likelihood occasional severity major irritation found in version impact expected use os all support group any description add support for pvtk files with pieces that are legacy vtk files example pvtk file file version pvtk datatype vtkunstructuredgrid numberofpieces comments this case can be done easily with a visit file as well but we should have out of the box support for pvtk i believe the vtkpdatasetreader class in vtk s io parallel can be utilized for this modified possibly for the way visit handles files created a parser for pvtk files and added it to vtk reader m databases vtk vtkplugininfo ca databases vtk pvtkparser cm databases vtk avtvtkfilereader ca databases vtk pvtkparser hm databases vtk vtk xmlm databases vtk cmakelists txt
| 0
|
2,004
| 22,409,719,441
|
IssuesEvent
|
2022-06-18 14:35:33
|
adoptium/infrastructure
|
https://api.github.com/repos/adoptium/infrastructure
|
closed
|
ccache package fails to install on RHEL7
|
ansible reliability awxDeployFailure
|
It should probably be left to install from source on this OS and no attempt made to install via package manager.
```
TASK [Common : Install additional build tools for RHEL 7] **********************
ok: [build-marist-rhel77-s390x-2] => (item=libstdc++-static)
ok: [build-marist-rhel77-s390x-1] => (item=libstdc++-static)
failed: [build-marist-rhel77-s390x-2] (item=ccache) => {"ansible_loop_var": "item", "changed": false, "item": "ccache", "msg": "No package matching 'ccache' found available, installed or updated", "rc": 126, "results": ["No package matching 'ccache' found available, installed or updated"]}
failed: [build-marist-rhel77-s390x-1] (item=ccache) => {"ansible_loop_var": "item", "changed": false, "item": "ccache", "msg": "No package matching 'ccache' found available, installed or updated", "rc": 126, "results": ["No package matching 'ccache' found available, installed or updated"]}
```
|
True
|
ccache package fails to install on RHEL7 - It should probably be left to install from source on this OS and no attempt made to install via package manager.
```
TASK [Common : Install additional build tools for RHEL 7] **********************
ok: [build-marist-rhel77-s390x-2] => (item=libstdc++-static)
ok: [build-marist-rhel77-s390x-1] => (item=libstdc++-static)
failed: [build-marist-rhel77-s390x-2] (item=ccache) => {"ansible_loop_var": "item", "changed": false, "item": "ccache", "msg": "No package matching 'ccache' found available, installed or updated", "rc": 126, "results": ["No package matching 'ccache' found available, installed or updated"]}
failed: [build-marist-rhel77-s390x-1] (item=ccache) => {"ansible_loop_var": "item", "changed": false, "item": "ccache", "msg": "No package matching 'ccache' found available, installed or updated", "rc": 126, "results": ["No package matching 'ccache' found available, installed or updated"]}
```
|
reli
|
ccache package fails to install on it should probably be left to install from source on this os and no attempt made to install via package manager task ok item libstdc static ok item libstdc static failed item ccache ansible loop var item changed false item ccache msg no package matching ccache found available installed or updated rc results failed item ccache ansible loop var item changed false item ccache msg no package matching ccache found available installed or updated rc results
| 1
|
181,059
| 21,640,521,692
|
IssuesEvent
|
2022-05-05 18:17:01
|
project-chip/connectedhomeip
|
https://api.github.com/repos/project-chip/connectedhomeip
|
closed
|
BLEEndPoint::Receive should probably check that it has data
|
p1 V1.0 security
|
#### Problem
`BLEEndPoint::Receive` does:
```
if (mBtpEngine.IsCommandPacket(data))
```
which will examine the first byte of `data`. But what if `data` has no payload bytes at all? Seems like we'd be reading random memory.
#### Proposed Solution
Check that we have a byte to read before reading it.
It looks like this code came in like this from Weave.... @pan-apple @turon
|
True
|
BLEEndPoint::Receive should probably check that it has data - #### Problem
`BLEEndPoint::Receive` does:
```
if (mBtpEngine.IsCommandPacket(data))
```
which will examine the first byte of `data`. But what if `data` has no payload bytes at all? Seems like we'd be reading random memory.
#### Proposed Solution
Check that we have a byte to read before reading it.
It looks like this code came in like this from Weave.... @pan-apple @turon
|
non_reli
|
bleendpoint receive should probably check that it has data problem bleendpoint receive does if mbtpengine iscommandpacket data which will examine the first byte of data but what if data has no payload bytes at all seems like we d be reading random memory proposed solution check that we have a byte to read before reading it it looks like this code came in like this from weave pan apple turon
| 0
|
405,264
| 27,510,297,138
|
IssuesEvent
|
2023-03-06 08:16:29
|
Kawbat/dd2480-jabref
|
https://api.github.com/repos/Kawbat/dd2480-jabref
|
closed
|
Write project description
|
documentation
|
Add a short project description together with a link to the original repository.
|
1.0
|
Write project description - Add a short project description together with a link to the original repository.
|
non_reli
|
write project description add a short project description together with a link to the original repository
| 0
|
65,453
| 27,106,498,194
|
IssuesEvent
|
2023-02-15 12:30:42
|
microsoft/vscode-cpptools
|
https://api.github.com/repos/microsoft/vscode-cpptools
|
reopened
|
Inheritance and override icons like in CLion
|
Language Service Feature Request more votes needed
|
Type: Feature Request
It would be nice to have icons on lines which show the following, like in CLion:
- the method overrides another one (a hover would indicate the overridden method)
- the method is overridden somewhere (a hover would indicate all overriding methods)
- the class/struct inherits (an)other(s) (a hover would indicate all parents)
- the class/struct is inherited somewhere (a hover would indicate all childs)
This is basically the same feature request as [this one](https://github.com/microsoft/python-language-server/issues/1641) but for C++.
An example on how it looks in CLion (not complete):

|
1.0
|
Inheritance and override icons like in CLion - Type: Feature Request
It would be nice to have icons on lines which show the following, like in CLion:
- the method overrides another one (a hover would indicate the overridden method)
- the method is overridden somewhere (a hover would indicate all overriding methods)
- the class/struct inherits (an)other(s) (a hover would indicate all parents)
- the class/struct is inherited somewhere (a hover would indicate all childs)
This is basically the same feature request as [this one](https://github.com/microsoft/python-language-server/issues/1641) but for C++.
An example on how it looks in CLion (not complete):

|
non_reli
|
inheritance and override icons like in clion type feature request it would be nice to have icons on lines which show the following like in clion the method overrides another one a hover would indicate the overridden method the method is overridden somewhere a hover would indicate all overriding methods the class struct inherits an other s a hover would indicate all parents the class struct is inherited somewhere a hover would indicate all childs this is basically the same feature request as but for c an example on how it looks in clion not complete
| 0
|
3,001
| 30,877,805,297
|
IssuesEvent
|
2023-08-03 15:21:39
|
camunda/zeebe
|
https://api.github.com/repos/camunda/zeebe
|
opened
|
IllegalStateArgument when removing job stream
|
kind/bug severity/high area/reliability
|
**Describe the bug**
An exception is thrown whenever the `JobStreamRemover` tries to remove a stream in the gateway. This is due to the future completing without an executor, thus completing within the actor context, and then calling `Actor.call`. As we already wanted to ensure that an executor was used, we should do that as well.
**To Reproduce**
Register a stream via the command. Cancel it. An exception is thrown and the stream is not removed from the gateway nor the broker (even if the client has gone away).
**Expected behavior**
The stream is removed and no error is thrown.
**Environment:**
- Zeebe Version: 8.3.0-alpha4
|
True
|
IllegalStateArgument when removing job stream - **Describe the bug**
An exception is thrown whenever the `JobStreamRemover` tries to remove a stream in the gateway. This is due to the future completing without an executor, thus completing within the actor context, and then calling `Actor.call`. As we already wanted to ensure that an executor was used, we should do that as well.
**To Reproduce**
Register a stream via the command. Cancel it. An exception is thrown and the stream is not removed from the gateway nor the broker (even if the client has gone away).
**Expected behavior**
The stream is removed and no error is thrown.
**Environment:**
- Zeebe Version: 8.3.0-alpha4
|
reli
|
illegalstateargument when removing job stream describe the bug an exception is thrown whenever the jobstreamremover tries to remove a stream in the gateway this is due to the future completing without an executor thus completing within the actor context and then calling actor call as we already wanted to ensure that an executor was used we should do that as well to reproduce register a stream via the command cancel it an exception is thrown and the stream is not removed from the gateway nor the broker even if the client has gone away expected behavior the stream is removed and no error is thrown environment zeebe version
| 1
|
313,107
| 9,557,105,505
|
IssuesEvent
|
2019-05-03 10:25:50
|
Abwasserrohr/SKYBLOCK.SK
|
https://api.github.com/repos/Abwasserrohr/SKYBLOCK.SK
|
opened
|
storage.sk: Make it possible to place signs on the side of the storage unit and update it
|
enhancement priority:low
|
Update storage information signs also on the side of the storage unit, not only if it is on top.
|
1.0
|
storage.sk: Make it possible to place signs on the side of the storage unit and update it - Update storage information signs also on the side of the storage unit, not only if it is on top.
|
non_reli
|
storage sk make it possible to place signs on the side of the storage unit and update it update storage information signs also on the side of the storage unit not only if it is on top
| 0
|
70,803
| 15,110,460,915
|
IssuesEvent
|
2021-02-08 19:15:22
|
idonthaveafifaaddiction/openthread
|
https://api.github.com/repos/idonthaveafifaaddiction/openthread
|
opened
|
CVE-2018-19608 (Medium) detected in https://source.codeaurora.org/quic/lc/external/github.com/openthread/openthread/upstream/thread-reference-20191113
|
security vulnerability
|
## CVE-2018-19608 - Medium Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>https://source.codeaurora.org/quic/lc/external/github.com/openthread/openthread/upstream/thread-reference-20191113</b></p></summary>
<p>
<p>Library home page: <a href=https://source.codeaurora.org/quic/lc/external/github.com/openthread/openthread/>https://source.codeaurora.org/quic/lc/external/github.com/openthread/openthread/</a></p>
<p>Found in HEAD commit: <a href="https://github.com/idonthaveafifaaddiction/openthread/commit/2dd677e6bec4cc5e005bf3b02de7821ba23885af">2dd677e6bec4cc5e005bf3b02de7821ba23885af</a></p>
<p>Found in base branch: <b>master</b></p></p>
</details>
</p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Source Files (1)</summary>
<p></p>
<p>
<img src='https://s3.amazonaws.com/wss-public/bitbucketImages/xRedImage.png' width=19 height=20> <b>openthread/third_party/mbedtls/repo/library/bignum.c</b>
</p>
</details>
<p></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary>
<p>
Arm Mbed TLS before 2.14.1, before 2.7.8, and before 2.1.17 allows a local unprivileged attacker to recover the plaintext of RSA decryption, which is used in RSA-without-(EC)DH(E) cipher suites.
<p>Publish Date: 2018-12-05
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2018-19608>CVE-2018-19608</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.7</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: None
- Availability Impact: None
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary>
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2018-19608">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2018-19608</a></p>
<p>Fix Resolution: mbedtls-2.14.1</p>
</p>
</details>
<p></p>
|
True
|
CVE-2018-19608 (Medium) detected in https://source.codeaurora.org/quic/lc/external/github.com/openthread/openthread/upstream/thread-reference-20191113 - ## CVE-2018-19608 - Medium Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>https://source.codeaurora.org/quic/lc/external/github.com/openthread/openthread/upstream/thread-reference-20191113</b></p></summary>
<p>
<p>Library home page: <a href=https://source.codeaurora.org/quic/lc/external/github.com/openthread/openthread/>https://source.codeaurora.org/quic/lc/external/github.com/openthread/openthread/</a></p>
<p>Found in HEAD commit: <a href="https://github.com/idonthaveafifaaddiction/openthread/commit/2dd677e6bec4cc5e005bf3b02de7821ba23885af">2dd677e6bec4cc5e005bf3b02de7821ba23885af</a></p>
<p>Found in base branch: <b>master</b></p></p>
</details>
</p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Source Files (1)</summary>
<p></p>
<p>
<img src='https://s3.amazonaws.com/wss-public/bitbucketImages/xRedImage.png' width=19 height=20> <b>openthread/third_party/mbedtls/repo/library/bignum.c</b>
</p>
</details>
<p></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary>
<p>
Arm Mbed TLS before 2.14.1, before 2.7.8, and before 2.1.17 allows a local unprivileged attacker to recover the plaintext of RSA decryption, which is used in RSA-without-(EC)DH(E) cipher suites.
<p>Publish Date: 2018-12-05
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2018-19608>CVE-2018-19608</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.7</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: None
- Availability Impact: None
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary>
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2018-19608">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2018-19608</a></p>
<p>Fix Resolution: mbedtls-2.14.1</p>
</p>
</details>
<p></p>
|
non_reli
|
cve medium detected in cve medium severity vulnerability vulnerable library library home page a href found in head commit a href found in base branch master vulnerable source files openthread third party mbedtls repo library bignum c vulnerability details arm mbed tls before before and before allows a local unprivileged attacker to recover the plaintext of rsa decryption which is used in rsa without ec dh e cipher suites 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 none availability impact none for more information on scores click a href suggested fix type upgrade version origin a href fix resolution mbedtls
| 0
|
226,049
| 17,937,045,912
|
IssuesEvent
|
2021-09-10 16:40:01
|
Stewart86/aioCloudflare
|
https://api.github.com/repos/Stewart86/aioCloudflare
|
opened
|
Add test mock support
|
testing
|
At some point user might not want to connect directly to Cloudflare API when doing unit test. A mocking support would definitely help.
Can use `respx` to construct the `pytest.fixture`
|
1.0
|
Add test mock support - At some point user might not want to connect directly to Cloudflare API when doing unit test. A mocking support would definitely help.
Can use `respx` to construct the `pytest.fixture`
|
non_reli
|
add test mock support at some point user might not want to connect directly to cloudflare api when doing unit test a mocking support would definitely help can use respx to construct the pytest fixture
| 0
|
588,564
| 17,662,520,264
|
IssuesEvent
|
2021-08-21 20:11:19
|
braem/moodi
|
https://api.github.com/repos/braem/moodi
|
closed
|
[Bug]: Font on tabbar not correct
|
Type: Bug Priority: Medium Size: Small
|
### Describe the bug
Font family on tabbar doesn't match the app's default (comfortaa)
### To Reproduce
1. Open app
2. Navigate to any page with a tabbar (everywhere but new mood entry currently)
3. Notice the font doesnt match! aaaaaaaaaa
### Expected Behavior
Use Comfortaa!
### Additional context
This is a little more involved with app shell stuff ;(
|
1.0
|
[Bug]: Font on tabbar not correct - ### Describe the bug
Font family on tabbar doesn't match the app's default (comfortaa)
### To Reproduce
1. Open app
2. Navigate to any page with a tabbar (everywhere but new mood entry currently)
3. Notice the font doesnt match! aaaaaaaaaa
### Expected Behavior
Use Comfortaa!
### Additional context
This is a little more involved with app shell stuff ;(
|
non_reli
|
font on tabbar not correct describe the bug font family on tabbar doesn t match the app s default comfortaa to reproduce open app navigate to any page with a tabbar everywhere but new mood entry currently notice the font doesnt match aaaaaaaaaa expected behavior use comfortaa additional context this is a little more involved with app shell stuff
| 0
|
255
| 5,735,786,641
|
IssuesEvent
|
2017-04-22 01:34:23
|
Storj/bridge
|
https://api.github.com/repos/Storj/bridge
|
closed
|
Integrate and deploy auditing worker
|
reliability
|
While the farmer uptime monitor will catch many farmers that go offline, there also needs to be a process that will make sure that files still exist, if the files have not been retrieved successfully recently. These audits may not need to be an a predefined schedule, but would be triggered when a file has not been accessed within a duration of time.
There is existing work in this area at:
- https://github.com/Storj/bridge/pull/326
- https://github.com/Storj/service-auditor
This will also contribute to solving issues such as, as times that the file is stored can be recorded and used for payouts:
- https://github.com/Storj/bridge/issues/389
|
True
|
Integrate and deploy auditing worker - While the farmer uptime monitor will catch many farmers that go offline, there also needs to be a process that will make sure that files still exist, if the files have not been retrieved successfully recently. These audits may not need to be an a predefined schedule, but would be triggered when a file has not been accessed within a duration of time.
There is existing work in this area at:
- https://github.com/Storj/bridge/pull/326
- https://github.com/Storj/service-auditor
This will also contribute to solving issues such as, as times that the file is stored can be recorded and used for payouts:
- https://github.com/Storj/bridge/issues/389
|
reli
|
integrate and deploy auditing worker while the farmer uptime monitor will catch many farmers that go offline there also needs to be a process that will make sure that files still exist if the files have not been retrieved successfully recently these audits may not need to be an a predefined schedule but would be triggered when a file has not been accessed within a duration of time there is existing work in this area at this will also contribute to solving issues such as as times that the file is stored can be recorded and used for payouts
| 1
|
43,487
| 7,047,923,058
|
IssuesEvent
|
2018-01-02 15:37:17
|
tapestry-cloud/tapestry
|
https://api.github.com/repos/tapestry-cloud/tapestry
|
closed
|
Potentially add a basic serve command
|
add-documentation enhancement
|
Basically a wrapper around `php -S 127.0.0.1:3000 -t build_local`.
|
1.0
|
Potentially add a basic serve command - Basically a wrapper around `php -S 127.0.0.1:3000 -t build_local`.
|
non_reli
|
potentially add a basic serve command basically a wrapper around php s t build local
| 0
|
216,318
| 16,655,974,831
|
IssuesEvent
|
2021-06-05 14:31:54
|
battjt/j1939-84
|
https://api.github.com/repos/battjt/j1939-84
|
opened
|
Exclusion List Escape Observed
|
NOxBinGHG User documentation future enhancement
|
Exclusion List Escape Observed.
Was SP 12691 expected in exclusion list? Or was 12691 added to DM24 in error, as there was to be one representative for all GHG?
DM24 from Engine #2 (1): [
D F T F
a r e F
t F s l
a r t n SPN — SP Name
----------------------
D F 2 SPN 27 - Engine EGR 1 Valve Position
...
D 4 SPN 12675 - NOx Tracking Engine Activity Lifetime Fuel Consumption Bin 1 (Total)
D 1 SPN 12691 - GHG Tracking Lifetime Active Technology Index
D 4 SPN 12730 - GHG Tracking Lifetime Engine Run Time
SPN 12675 is supported by Engine #2 (1) but will be omitted
SPN 12730 is supported by Engine #2 (1) but will be omitted
13:35:08.3803 DS Request for PGN 64257 to Engine #2 (1) for SPNs 12691
13:35:08.3818 18EA01F9 [3] 01 FB 00 (TX)
13:35:08.4743 18FB0101 [28] FA 00 00 00 00 00 00 00 00 F9 00 00 00 00 00 00 00 00 F8 00 00 00 00 00 00 00 00 00
Green House Gas Lifetime Active Technology Tracking from Engine #2 (1):
SPN 12691, GHG Tracking Lifetime Active Technology Index: 11111010
SPN 12692, GHG Tracking Lifetime Active Technology Time: 0.000000 s
SPN 12693, GHG Tracking Lifetime Active Technology Vehicle Distance: 0.000000 m
Add 12691 and similar SPs to exclusion list. SP 12730 should trigger this query in the planned discrete tests.
|
1.0
|
Exclusion List Escape Observed - Exclusion List Escape Observed.
Was SP 12691 expected in exclusion list? Or was 12691 added to DM24 in error, as there was to be one representative for all GHG?
DM24 from Engine #2 (1): [
D F T F
a r e F
t F s l
a r t n SPN — SP Name
----------------------
D F 2 SPN 27 - Engine EGR 1 Valve Position
...
D 4 SPN 12675 - NOx Tracking Engine Activity Lifetime Fuel Consumption Bin 1 (Total)
D 1 SPN 12691 - GHG Tracking Lifetime Active Technology Index
D 4 SPN 12730 - GHG Tracking Lifetime Engine Run Time
SPN 12675 is supported by Engine #2 (1) but will be omitted
SPN 12730 is supported by Engine #2 (1) but will be omitted
13:35:08.3803 DS Request for PGN 64257 to Engine #2 (1) for SPNs 12691
13:35:08.3818 18EA01F9 [3] 01 FB 00 (TX)
13:35:08.4743 18FB0101 [28] FA 00 00 00 00 00 00 00 00 F9 00 00 00 00 00 00 00 00 F8 00 00 00 00 00 00 00 00 00
Green House Gas Lifetime Active Technology Tracking from Engine #2 (1):
SPN 12691, GHG Tracking Lifetime Active Technology Index: 11111010
SPN 12692, GHG Tracking Lifetime Active Technology Time: 0.000000 s
SPN 12693, GHG Tracking Lifetime Active Technology Vehicle Distance: 0.000000 m
Add 12691 and similar SPs to exclusion list. SP 12730 should trigger this query in the planned discrete tests.
|
non_reli
|
exclusion list escape observed exclusion list escape observed was sp expected in exclusion list or was added to in error as there was to be one representative for all ghg from engine d f t f a r e f t f s l a r t n spn — sp name d f spn engine egr valve position d spn nox tracking engine activity lifetime fuel consumption bin total d spn ghg tracking lifetime active technology index d spn ghg tracking lifetime engine run time spn is supported by engine but will be omitted spn is supported by engine but will be omitted ds request for pgn to engine for spns fb tx fa green house gas lifetime active technology tracking from engine spn ghg tracking lifetime active technology index spn ghg tracking lifetime active technology time s spn ghg tracking lifetime active technology vehicle distance m add and similar sps to exclusion list sp should trigger this query in the planned discrete tests
| 0
|
137
| 4,163,864,769
|
IssuesEvent
|
2016-06-18 11:35:18
|
Bubbus/ACF-Missiles
|
https://api.github.com/repos/Bubbus/ACF-Missiles
|
closed
|
Missile guidance code
|
enhancement reliability
|
It is known that missiles tend to miss fast-moving targets a lot, even when they are perfectly able to hit them both propellant and speed wise. This makes anti-air missiles unreliable, forcing players to fire multiple times in order to destroy their target.
To compensate for this, I am currently reworking the guidance code and testing a new approach to it. The new system looks promising in theory, and works flawlessly in an E2 environment, however I didn't test it on ACF missiles yet. This change may also require the flight code to be modified, and while this will affect all missiles, I will try to keep the unique behaviour of each of them unchanged.
I'll keep this thread updated as I make progress.
|
True
|
Missile guidance code - It is known that missiles tend to miss fast-moving targets a lot, even when they are perfectly able to hit them both propellant and speed wise. This makes anti-air missiles unreliable, forcing players to fire multiple times in order to destroy their target.
To compensate for this, I am currently reworking the guidance code and testing a new approach to it. The new system looks promising in theory, and works flawlessly in an E2 environment, however I didn't test it on ACF missiles yet. This change may also require the flight code to be modified, and while this will affect all missiles, I will try to keep the unique behaviour of each of them unchanged.
I'll keep this thread updated as I make progress.
|
reli
|
missile guidance code it is known that missiles tend to miss fast moving targets a lot even when they are perfectly able to hit them both propellant and speed wise this makes anti air missiles unreliable forcing players to fire multiple times in order to destroy their target to compensate for this i am currently reworking the guidance code and testing a new approach to it the new system looks promising in theory and works flawlessly in an environment however i didn t test it on acf missiles yet this change may also require the flight code to be modified and while this will affect all missiles i will try to keep the unique behaviour of each of them unchanged i ll keep this thread updated as i make progress
| 1
|
711
| 10,014,035,970
|
IssuesEvent
|
2019-07-15 16:30:02
|
dotnet/corefx
|
https://api.github.com/repos/dotnet/corefx
|
closed
|
Stress issues with HttpClient, Kestrel, and HTTP/2
|
area-System.Net.Http.SocketsHttpHandler bug tenet-reliability
|
(I'm opening one issue right now because I don't have individual repros for each of the following issues, and it’s possible one or more are related. We can decide if/when to break out individual issues.)
I wrote a simple stress program to exercise many concurrent requests from HttpClient against Kestrel, specifically for HTTP/2. In doing so, I encountered a variety of failures in a very short period of time (seconds). I've not investigated any of these. Some are obviously issues with SocketsHttpHandler, but some could be on either end of the connection (and a few are likely to be Kestrel). The below is based on the most recent daily build as of now:
```
.NET Core: 3.0.0-preview7-27825-06
ASP.NET Core: 3.0.0-preview7.19325.3
```
These were encountered by varying some of the constants (e.g. ConcurrentRequests, AppxContentLength) as well as by commenting and uncommenting out which client operations were available to be performed in a given run.
Error 1:
```
System.IO.IOException: The request was aborted.
---> System.Net.Http.Http2ProtocolException: The HTTP/2 request failed with protocol error 'FRAME_SIZE_ERROR' (0x6).
at System.Net.Http.Http2Connection.ReadFrameAsync(Boolean initialFrame)
at System.Net.Http.Http2Connection.ProcessIncomingFramesAsync()
--- End of inner exception stack trace ---
at System.Net.Http.Http2Connection.Http2Stream.TryReadFromBuffer(Span`1 buffer)
at System.Net.Http.Http2Connection.Http2Stream.ReadDataAsync(Memory`1 buffer, CancellationToken cancellationToken)
at System.IO.Stream.CopyToAsyncInternal(Stream destination, Int32 bufferSize, CancellationToken cancellationToken)
at System.Net.Http.HttpClient.GetStringAsyncCore(Task`1 getTask)
at Program.<>c__DisplayClass0_2.<<Main>b__17>d.MoveNext() in C:\Users\stoub\source\repos\HTTP2Stress\HTTP2Stress\Program.cs:line 173```
```
Error 2:
```
System.Net.Http.HttpRequestException: An error occurred while sending the request.
---> System.IO.IOException: The request was aborted.
---> System.Net.Http.Http2ProtocolException: The HTTP/2 request failed with protocol error 'NO_ERROR' (0x0).
--- End of inner exception stack trace ---
at System.Net.Http.Http2Connection.Http2Stream.TryEnsureHeaders()
at System.Net.Http.Http2Connection.Http2Stream.ReadResponseHeadersAsync()
at System.Net.Http.Http2Connection.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken)
--- End of inner exception stack trace ---
at System.Net.Http.Http2Connection.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken)
at System.Net.Http.HttpConnectionPool.SendWithRetryAsync(HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken)
at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken)
at System.Net.Http.HttpClient.FinishSendAsyncUnbuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts)
at System.Net.Http.HttpClient.GetStringAsyncCore(Task`1 getTask)
at Program.<>c__DisplayClass0_2.<<Main>b__13>d.MoveNext() in C:\Users\stoub\source\repos\HTTP2Stress\HTTP2Stress\Program.cs:line 177
```
Error 3:
```
System.NullReferenceException: Object reference not set to an instance of an object.
at System.Net.Http.RedirectHandler.GetUriForRedirect(Uri requestUri, HttpResponseMessage response)
at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken)
at System.Net.Http.HttpClient.FinishSendAsyncUnbuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts)
at Program.<>c__DisplayClass0_0.<<Main>b__1>d.MoveNext() in C:\Users\stoub\source\repos\HTTP2Stress\HTTP2Stress\Program.cs:line 100
--- End of stack trace from previous location where exception was thrown ---
at Program.<>c__DisplayClass0_2.<<Main>b__13>d.MoveNext() in C:\Users\stoub\source\repos\HTTP2Stress\HTTP2Stress\Program.cs:line 173
```
Error 4:
```
System.Net.Http.HttpRequestException: An error occurred while sending the request.
---> System.Net.Http.Http2ProtocolException: The HTTP/2 request failed with protocol error 'PROTOCOL_ERROR' (The HTTP/2 request encountered a protocol error, receiving 'data' while in the state 'ExpectingStatus'.).
at System.Net.Http.Http2Connection.Http2Stream.OnResponseData(ReadOnlySpan`1 buffer, Boolean endStream)
at System.Net.Http.Http2Connection.ProcessDataFrame(FrameHeader frameHeader)
at System.Net.Http.Http2Connection.ProcessIncomingFramesAsync()
--- End of inner exception stack trace ---
at System.Net.Http.Http2Connection.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken)
at System.Net.Http.HttpConnectionPool.SendWithRetryAsync(HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken)
at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken)
at System.Net.Http.HttpClient.FinishSendAsyncUnbuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts)
at Program.<>c__DisplayClass0_0.<<Main>b__1>d.MoveNext() in C:\Users\stoub\source\repos\HTTP2Stress\HTTP2Stress\Program.cs:line 65
--- End of stack trace from previous location where exception was thrown ---
at Program.<>c__DisplayClass0_2.<<Main>b__13>d.MoveNext() in C:\Users\stoub\source\repos\HTTP2Stress\HTTP2Stress\Program.cs:line 169
```
Error 5:
```
System.InvalidOperationException: The stream was already consumed. It cannot be read again.
at System.Net.Http.HttpConnectionResponseContent.ConsumeStream()
at System.Net.Http.HttpConnectionResponseContent.SerializeToStreamAsync(Stream stream, TransportContext context, CancellationToken cancellationToken)
at System.Net.Http.HttpContent.LoadIntoBufferAsyncCore(Task serializeToStreamTask, MemoryStream tempBuffer)
at System.Net.Http.HttpClient.FinishSendAsyncBuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts)
at Program.<>c__DisplayClass0_0.<<Main>b__1>d.MoveNext() in C:\Users\stoub\source\repos\HTTP2Stress\HTTP2Stress\Program.cs:line 50
--- End of stack trace from previous location where exception was thrown ---
at Program.<>c__DisplayClass0_2.<<Main>b__13>d.MoveNext() in C:\Users\stoub\source\repos\HTTP2Stress\HTTP2Stress\Program.cs:line 154
```
Error 6:
```
System.Exception: Unexpected response. Got: 1234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456
at Program.<>c__DisplayClass0_2.<<Main>b__13>d.MoveNext() in C:\Users\stoub\source\repos\HTTP2Stress\HTTP2Stress\Program.cs:line 169
```
Error 7:
```
System.Net.Http.HttpRequestException: An error occurred while sending the request.
---> System.ObjectDisposedException: Cannot access a disposed object.
Object name: 'CreditManager'.
at System.Net.Http.TaskCompletionSourceWithCancellation`1.WaitWithCancellationAsync(CancellationToken cancellationToken)
at System.Net.Http.Http2Connection.SendHeadersAsync(HttpRequestMessage request, CancellationToken cancellationToken, Boolean mustFlush)
at System.Net.Http.Http2Connection.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken)
--- End of inner exception stack trace ---
at System.Net.Http.Http2Connection.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken)
at System.Net.Http.HttpConnectionPool.SendWithRetryAsync(HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken)
at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken)
at System.Net.Http.HttpClient.FinishSendAsyncUnbuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts)
at Program.<>c__DisplayClass0_0.<<Main>b__5>d.MoveNext() in C:\Users\stoub\source\repos\HTTP2Stress\HTTP2Stress\Program.cs:line 100
--- End of stack trace from previous location where exception was thrown ---
at Program.<>c__DisplayClass0_2.<<Main>b__17>d.MoveNext() in C:\Users\stoub\source\repos\HTTP2Stress\HTTP2Stress\Program.cs:line 173
```
Error 8:
```
System.Net.Http.HttpRequestException: An error occurred while sending the request.
---> System.IO.IOException: The request was aborted.
---> System.Net.Http.Http2ProtocolException: The HTTP/2 request failed with protocol error 'STREAM_CLOSED' (0x5).
--- End of inner exception stack trace ---
at System.Net.Http.Http2Connection.Http2Stream.TryEnsureHeaders()
at System.Net.Http.Http2Connection.Http2Stream.ReadResponseHeadersAsync()
at System.Net.Http.Http2Connection.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken)
--- End of inner exception stack trace ---
at System.Net.Http.Http2Connection.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken)
at System.Net.Http.HttpConnectionPool.SendWithRetryAsync(HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken)
at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken)
at System.Net.Http.HttpClient.FinishSendAsyncUnbuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts)
at Program.<>c__DisplayClass0_0.<<Main>b__1>d.MoveNext() in C:\Users\stoub\source\repos\HTTP2Stress\HTTP2Stress\Program.cs:line 105
--- End of stack trace from previous location where exception was thrown ---
at Program.<>c__DisplayClass0_2.<<Main>b__13>d.MoveNext() in C:\Users\stoub\source\repos\HTTP2Stress\HTTP2Stress\Program.cs:line 177
```
Error 9:
```
System.Net.Http.HttpRequestException: An error occurred while sending the request.
---> System.IO.IOException: The response ended prematurely, with at least 213 additional bytes expected.
at System.Net.Http.Http2Connection.ReadAtLeastAsync(Stream stream, Memory`1 buffer, Int32 minReadBytes)
at System.Net.Http.Http2Connection.EnsureIncomingBytesAsync(Int32 minReadBytes)
at System.Net.Http.Http2Connection.ReadFrameAsync(Boolean initialFrame)
at System.Net.Http.Http2Connection.ProcessIncomingFramesAsync()
--- End of inner exception stack trace ---
at System.Net.Http.Http2Connection.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken)
at System.Net.Http.HttpConnectionPool.SendWithRetryAsync(HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken)
at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken)
at System.Net.Http.HttpClient.FinishSendAsyncUnbuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts)
at Program.<>c__DisplayClass0_0.<<Main>b__1>d.MoveNext() in C:\Users\stoub\source\repos\HTTP2Stress\HTTP2Stress\Program.cs:line 105
--- End of stack trace from previous location where exception was thrown ---
at Program.<>c__DisplayClass0_2.<<Main>b__13>d.MoveNext() in C:\Users\stoub\source\repos\HTTP2Stress\HTTP2Stress\Program.cs:line 177
```
Error 10:
```
System.Net.Http.HttpRequestException: An error occurred while sending the request.
---> System.Net.Http.Http2ProtocolException: The HTTP/2 request failed with protocol error 'PROTOCOL_ERROR' (Received an HTTP/2 pseudo-header as a trailing header.).
at System.Net.Http.Http2Connection.Http2Stream.OnResponseHeader(ReadOnlySpan`1 name, ReadOnlySpan`1 value)
at System.Net.Http.Http2Connection.<>c.<.cctor>b__86_0(Object state, ReadOnlySpan`1 name, ReadOnlySpan`1 value)
at System.Net.Http.HPack.HPackDecoder.OnIndexedHeaderField(Int32 index, HeaderCallback onHeader, Object onHeaderState)
at System.Net.Http.HPack.HPackDecoder.Decode(ReadOnlySpan`1 data, Boolean endHeaders, HeaderCallback onHeader, Object onHeaderState)
at System.Net.Http.Http2Connection.ProcessHeadersFrame(FrameHeader frameHeader)
at System.Net.Http.Http2Connection.ProcessIncomingFramesAsync()
--- End of inner exception stack trace ---
at System.Net.Http.Http2Connection.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken)
at System.Net.Http.HttpConnectionPool.SendWithRetryAsync(HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken)
at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken)
at System.Net.Http.HttpClient.FinishSendAsyncUnbuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts)
at Program.<>c__DisplayClass0_0.<<Main>b__1>d.MoveNext() in C:\Users\stoub\source\repos\HTTP2Stress\HTTP2Stress\Program.cs:line 100
--- End of stack trace from previous location where exception was thrown ---
at Program.<>c__DisplayClass0_2.<<Main>b__13>d.MoveNext() in C:\Users\stoub\source\repos\HTTP2Stress\HTTP2Stress\Program.cs:line 173
```
**Code:**
```C#
using Microsoft.AspNetCore;
using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Hosting;
using Microsoft.AspNetCore.Http;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Hosting;
using Microsoft.Extensions.Logging;
using System;
using System.IO;
using System.Linq;
using System.Net.Http;
using System.Net.Security;
using System.Runtime.InteropServices;
using System.Security.Cryptography;
using System.Security.Cryptography.X509Certificates;
using System.Threading;
using System.Threading.Tasks;
public class Program
{
public static void Main(string[] args)
{
Console.WriteLine(" .NET Core: " + Path.GetFileName(Path.GetDirectoryName(typeof(object).Assembly.Location)));
Console.WriteLine("ASP.NET Core: " + Path.GetFileName(Path.GetDirectoryName(typeof(WebHost).Assembly.Location)));
const int ConcurrentRequests = 10; // 90;
const int HttpsPort = 5001;
const int AppxContentLength = 10_000; // 300_000
const int PrintEveryNRequests = 1000;
var httpVersion = new Version(2, 0);
var serverUri = new Uri("https://localhost:" + HttpsPort);
string content = string.Concat(Enumerable.Repeat("1234567890", AppxContentLength / 10));
void ValidateResponseVersion(HttpResponseMessage m)
{
if (m.Version != httpVersion)
{
throw new Exception("Unexpected response version: " + m.Version);
}
}
var clientOperations = new (string, Func<HttpClient, Task<string>>)[]
{
("GET", client => client.GetStringAsync(serverUri)),
("POST", async client =>
{
using (HttpResponseMessage m = await client.PostAsync(serverUri, new StringContent(content)))
{
ValidateResponseVersion(m);
return await m.Content.ReadAsStringAsync();
}
}),
("POST w/ Expect: 100-continue", async client =>
{
using (var req = new HttpRequestMessage(HttpMethod.Post, serverUri) { Version = httpVersion })
{
req.Content = new StringContent(content);
req.Headers.ExpectContinue = true;
using (HttpResponseMessage m = await client.SendAsync(req, HttpCompletionOption.ResponseHeadersRead))
{
ValidateResponseVersion(m);
return await m.Content.ReadAsStringAsync();
}
}
}),
("GET w/ Cancellation", async client =>
{
using (var req = new HttpRequestMessage(HttpMethod.Get, serverUri) { Version = httpVersion })
{
try
{
var cts = new CancellationTokenSource();
Task<HttpResponseMessage> t = client.SendAsync(req, HttpCompletionOption.ResponseHeadersRead, cts.Token);
await Task.Delay(1);
cts.Cancel();
using (HttpResponseMessage m = await t)
{
ValidateResponseVersion(m);
return await m.Content.ReadAsStringAsync();
}
}
catch (OperationCanceledException) { return null; }
}
}),
("POST w/ cancellation", async client =>
{
using (var req = new HttpRequestMessage(HttpMethod.Post, serverUri) { Version = httpVersion })
{
try
{
req.Content = new StringContent(content);
var cts = new CancellationTokenSource();
Task<HttpResponseMessage> t = client.SendAsync(req, HttpCompletionOption.ResponseHeadersRead, cts.Token);
await Task.Delay(1);
cts.Cancel();
using (HttpResponseMessage m = await t)
{
ValidateResponseVersion(m);
return await m.Content.ReadAsStringAsync();
}
}
catch (OperationCanceledException) { return null; }
}
}),
};
Console.WriteLine("Starting kestrel...");
WebHost
.CreateDefaultBuilder(args)
.ConfigureLogging(log => log.AddFilter("Microsoft.AspNetCore", level => false))
.UseKestrel(ko =>
{
ko.ListenLocalhost(HttpsPort, listenOptions =>
{
using (RSA rsa = RSA.Create())
{
var certReq = new CertificateRequest("CN=localhost", rsa, HashAlgorithmName.SHA256, RSASignaturePadding.Pkcs1);
certReq.CertificateExtensions.Add(new X509BasicConstraintsExtension(false, false, 0, false));
certReq.CertificateExtensions.Add(new X509EnhancedKeyUsageExtension(new OidCollection { new Oid("1.3.6.1.5.5.7.3.1") }, false));
certReq.CertificateExtensions.Add(new X509KeyUsageExtension(X509KeyUsageFlags.DigitalSignature, false));
X509Certificate2 cert = certReq.CreateSelfSigned(DateTimeOffset.UtcNow.AddMonths(-1), DateTimeOffset.UtcNow.AddMonths(1));
if (RuntimeInformation.IsOSPlatform(OSPlatform.Windows))
{
cert = new X509Certificate2(cert.Export(X509ContentType.Pfx));
}
listenOptions.UseHttps(cert);
}
});
})
.Configure(app =>
{
app.UseRouting();
app.UseEndpoints(endpoints =>
{
endpoints.MapGet("/", async context =>
{
await context.Response.WriteAsync(content);
});
endpoints.MapPost("/", async context =>
{
await context.Request.Body.CopyToAsync(context.Response.Body);
});
});
})
.Build()
.Start();
Console.WriteLine("Starting clients...");
using (var handler = new SocketsHttpHandler() { SslOptions = new SslClientAuthenticationOptions { RemoteCertificateValidationCallback = delegate { return true; } } })
using (var client = new HttpClient(handler) { DefaultRequestVersion = httpVersion })
{
long success = 0, fail = 0;
void Increment(ref long counter)
{
if (Interlocked.Increment(ref counter) % PrintEveryNRequests == 0)
{
Console.WriteLine($"Success: {Volatile.Read(ref success)}, Fail: {Volatile.Read(ref fail)}");
}
}
Task.WaitAll(Enumerable.Range(0, ConcurrentRequests).Select(taskNum => Task.Run(async () =>
{
Console.WriteLine("Starting client " + taskNum);
for (long i = 0; ; i++)
{
(string operation, Func<HttpClient, Task<string>> func) = clientOperations[i % clientOperations.Length];
try
{
string result = await func(client);
if (result != null && result != content)
{
throw new Exception("Unexpected response. Got: " + result);
}
Increment(ref success);
}
catch (Exception e)
{
Increment(ref fail);
lock (Console.Out)
{
Console.ForegroundColor = ConsoleColor.Yellow;
Console.WriteLine($"Error from iteration {i} ({operation}) in task {taskNum} with {success} successes / {fail} fails:");
Console.ResetColor();
Console.WriteLine(e);
Console.WriteLine();
}
}
}
})).ToArray());
}
}
}
```
cc: @geoffkizer, @wfurt, @scalablecory, @davidsh, @halter73
|
True
|
Stress issues with HttpClient, Kestrel, and HTTP/2 - (I'm opening one issue right now because I don't have individual repros for each of the following issues, and it’s possible one or more are related. We can decide if/when to break out individual issues.)
I wrote a simple stress program to exercise many concurrent requests from HttpClient against Kestrel, specifically for HTTP/2. In doing so, I encountered a variety of failures in a very short period of time (seconds). I've not investigated any of these. Some are obviously issues with SocketsHttpHandler, but some could be on either end of the connection (and a few are likely to be Kestrel). The below is based on the most recent daily build as of now:
```
.NET Core: 3.0.0-preview7-27825-06
ASP.NET Core: 3.0.0-preview7.19325.3
```
These were encountered by varying some of the constants (e.g. ConcurrentRequests, AppxContentLength) as well as by commenting and uncommenting out which client operations were available to be performed in a given run.
Error 1:
```
System.IO.IOException: The request was aborted.
---> System.Net.Http.Http2ProtocolException: The HTTP/2 request failed with protocol error 'FRAME_SIZE_ERROR' (0x6).
at System.Net.Http.Http2Connection.ReadFrameAsync(Boolean initialFrame)
at System.Net.Http.Http2Connection.ProcessIncomingFramesAsync()
--- End of inner exception stack trace ---
at System.Net.Http.Http2Connection.Http2Stream.TryReadFromBuffer(Span`1 buffer)
at System.Net.Http.Http2Connection.Http2Stream.ReadDataAsync(Memory`1 buffer, CancellationToken cancellationToken)
at System.IO.Stream.CopyToAsyncInternal(Stream destination, Int32 bufferSize, CancellationToken cancellationToken)
at System.Net.Http.HttpClient.GetStringAsyncCore(Task`1 getTask)
at Program.<>c__DisplayClass0_2.<<Main>b__17>d.MoveNext() in C:\Users\stoub\source\repos\HTTP2Stress\HTTP2Stress\Program.cs:line 173```
```
Error 2:
```
System.Net.Http.HttpRequestException: An error occurred while sending the request.
---> System.IO.IOException: The request was aborted.
---> System.Net.Http.Http2ProtocolException: The HTTP/2 request failed with protocol error 'NO_ERROR' (0x0).
--- End of inner exception stack trace ---
at System.Net.Http.Http2Connection.Http2Stream.TryEnsureHeaders()
at System.Net.Http.Http2Connection.Http2Stream.ReadResponseHeadersAsync()
at System.Net.Http.Http2Connection.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken)
--- End of inner exception stack trace ---
at System.Net.Http.Http2Connection.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken)
at System.Net.Http.HttpConnectionPool.SendWithRetryAsync(HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken)
at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken)
at System.Net.Http.HttpClient.FinishSendAsyncUnbuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts)
at System.Net.Http.HttpClient.GetStringAsyncCore(Task`1 getTask)
at Program.<>c__DisplayClass0_2.<<Main>b__13>d.MoveNext() in C:\Users\stoub\source\repos\HTTP2Stress\HTTP2Stress\Program.cs:line 177
```
Error 3:
```
System.NullReferenceException: Object reference not set to an instance of an object.
at System.Net.Http.RedirectHandler.GetUriForRedirect(Uri requestUri, HttpResponseMessage response)
at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken)
at System.Net.Http.HttpClient.FinishSendAsyncUnbuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts)
at Program.<>c__DisplayClass0_0.<<Main>b__1>d.MoveNext() in C:\Users\stoub\source\repos\HTTP2Stress\HTTP2Stress\Program.cs:line 100
--- End of stack trace from previous location where exception was thrown ---
at Program.<>c__DisplayClass0_2.<<Main>b__13>d.MoveNext() in C:\Users\stoub\source\repos\HTTP2Stress\HTTP2Stress\Program.cs:line 173
```
Error 4:
```
System.Net.Http.HttpRequestException: An error occurred while sending the request.
---> System.Net.Http.Http2ProtocolException: The HTTP/2 request failed with protocol error 'PROTOCOL_ERROR' (The HTTP/2 request encountered a protocol error, receiving 'data' while in the state 'ExpectingStatus'.).
at System.Net.Http.Http2Connection.Http2Stream.OnResponseData(ReadOnlySpan`1 buffer, Boolean endStream)
at System.Net.Http.Http2Connection.ProcessDataFrame(FrameHeader frameHeader)
at System.Net.Http.Http2Connection.ProcessIncomingFramesAsync()
--- End of inner exception stack trace ---
at System.Net.Http.Http2Connection.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken)
at System.Net.Http.HttpConnectionPool.SendWithRetryAsync(HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken)
at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken)
at System.Net.Http.HttpClient.FinishSendAsyncUnbuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts)
at Program.<>c__DisplayClass0_0.<<Main>b__1>d.MoveNext() in C:\Users\stoub\source\repos\HTTP2Stress\HTTP2Stress\Program.cs:line 65
--- End of stack trace from previous location where exception was thrown ---
at Program.<>c__DisplayClass0_2.<<Main>b__13>d.MoveNext() in C:\Users\stoub\source\repos\HTTP2Stress\HTTP2Stress\Program.cs:line 169
```
Error 5:
```
System.InvalidOperationException: The stream was already consumed. It cannot be read again.
at System.Net.Http.HttpConnectionResponseContent.ConsumeStream()
at System.Net.Http.HttpConnectionResponseContent.SerializeToStreamAsync(Stream stream, TransportContext context, CancellationToken cancellationToken)
at System.Net.Http.HttpContent.LoadIntoBufferAsyncCore(Task serializeToStreamTask, MemoryStream tempBuffer)
at System.Net.Http.HttpClient.FinishSendAsyncBuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts)
at Program.<>c__DisplayClass0_0.<<Main>b__1>d.MoveNext() in C:\Users\stoub\source\repos\HTTP2Stress\HTTP2Stress\Program.cs:line 50
--- End of stack trace from previous location where exception was thrown ---
at Program.<>c__DisplayClass0_2.<<Main>b__13>d.MoveNext() in C:\Users\stoub\source\repos\HTTP2Stress\HTTP2Stress\Program.cs:line 154
```
Error 6:
```
System.Exception: Unexpected response. Got: 1234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456
at Program.<>c__DisplayClass0_2.<<Main>b__13>d.MoveNext() in C:\Users\stoub\source\repos\HTTP2Stress\HTTP2Stress\Program.cs:line 169
```
Error 7:
```
System.Net.Http.HttpRequestException: An error occurred while sending the request.
---> System.ObjectDisposedException: Cannot access a disposed object.
Object name: 'CreditManager'.
at System.Net.Http.TaskCompletionSourceWithCancellation`1.WaitWithCancellationAsync(CancellationToken cancellationToken)
at System.Net.Http.Http2Connection.SendHeadersAsync(HttpRequestMessage request, CancellationToken cancellationToken, Boolean mustFlush)
at System.Net.Http.Http2Connection.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken)
--- End of inner exception stack trace ---
at System.Net.Http.Http2Connection.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken)
at System.Net.Http.HttpConnectionPool.SendWithRetryAsync(HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken)
at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken)
at System.Net.Http.HttpClient.FinishSendAsyncUnbuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts)
at Program.<>c__DisplayClass0_0.<<Main>b__5>d.MoveNext() in C:\Users\stoub\source\repos\HTTP2Stress\HTTP2Stress\Program.cs:line 100
--- End of stack trace from previous location where exception was thrown ---
at Program.<>c__DisplayClass0_2.<<Main>b__17>d.MoveNext() in C:\Users\stoub\source\repos\HTTP2Stress\HTTP2Stress\Program.cs:line 173
```
Error 8:
```
System.Net.Http.HttpRequestException: An error occurred while sending the request.
---> System.IO.IOException: The request was aborted.
---> System.Net.Http.Http2ProtocolException: The HTTP/2 request failed with protocol error 'STREAM_CLOSED' (0x5).
--- End of inner exception stack trace ---
at System.Net.Http.Http2Connection.Http2Stream.TryEnsureHeaders()
at System.Net.Http.Http2Connection.Http2Stream.ReadResponseHeadersAsync()
at System.Net.Http.Http2Connection.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken)
--- End of inner exception stack trace ---
at System.Net.Http.Http2Connection.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken)
at System.Net.Http.HttpConnectionPool.SendWithRetryAsync(HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken)
at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken)
at System.Net.Http.HttpClient.FinishSendAsyncUnbuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts)
at Program.<>c__DisplayClass0_0.<<Main>b__1>d.MoveNext() in C:\Users\stoub\source\repos\HTTP2Stress\HTTP2Stress\Program.cs:line 105
--- End of stack trace from previous location where exception was thrown ---
at Program.<>c__DisplayClass0_2.<<Main>b__13>d.MoveNext() in C:\Users\stoub\source\repos\HTTP2Stress\HTTP2Stress\Program.cs:line 177
```
Error 9:
```
System.Net.Http.HttpRequestException: An error occurred while sending the request.
---> System.IO.IOException: The response ended prematurely, with at least 213 additional bytes expected.
at System.Net.Http.Http2Connection.ReadAtLeastAsync(Stream stream, Memory`1 buffer, Int32 minReadBytes)
at System.Net.Http.Http2Connection.EnsureIncomingBytesAsync(Int32 minReadBytes)
at System.Net.Http.Http2Connection.ReadFrameAsync(Boolean initialFrame)
at System.Net.Http.Http2Connection.ProcessIncomingFramesAsync()
--- End of inner exception stack trace ---
at System.Net.Http.Http2Connection.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken)
at System.Net.Http.HttpConnectionPool.SendWithRetryAsync(HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken)
at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken)
at System.Net.Http.HttpClient.FinishSendAsyncUnbuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts)
at Program.<>c__DisplayClass0_0.<<Main>b__1>d.MoveNext() in C:\Users\stoub\source\repos\HTTP2Stress\HTTP2Stress\Program.cs:line 105
--- End of stack trace from previous location where exception was thrown ---
at Program.<>c__DisplayClass0_2.<<Main>b__13>d.MoveNext() in C:\Users\stoub\source\repos\HTTP2Stress\HTTP2Stress\Program.cs:line 177
```
Error 10:
```
System.Net.Http.HttpRequestException: An error occurred while sending the request.
---> System.Net.Http.Http2ProtocolException: The HTTP/2 request failed with protocol error 'PROTOCOL_ERROR' (Received an HTTP/2 pseudo-header as a trailing header.).
at System.Net.Http.Http2Connection.Http2Stream.OnResponseHeader(ReadOnlySpan`1 name, ReadOnlySpan`1 value)
at System.Net.Http.Http2Connection.<>c.<.cctor>b__86_0(Object state, ReadOnlySpan`1 name, ReadOnlySpan`1 value)
at System.Net.Http.HPack.HPackDecoder.OnIndexedHeaderField(Int32 index, HeaderCallback onHeader, Object onHeaderState)
at System.Net.Http.HPack.HPackDecoder.Decode(ReadOnlySpan`1 data, Boolean endHeaders, HeaderCallback onHeader, Object onHeaderState)
at System.Net.Http.Http2Connection.ProcessHeadersFrame(FrameHeader frameHeader)
at System.Net.Http.Http2Connection.ProcessIncomingFramesAsync()
--- End of inner exception stack trace ---
at System.Net.Http.Http2Connection.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken)
at System.Net.Http.HttpConnectionPool.SendWithRetryAsync(HttpRequestMessage request, Boolean doRequestAuth, CancellationToken cancellationToken)
at System.Net.Http.RedirectHandler.SendAsync(HttpRequestMessage request, CancellationToken cancellationToken)
at System.Net.Http.HttpClient.FinishSendAsyncUnbuffered(Task`1 sendTask, HttpRequestMessage request, CancellationTokenSource cts, Boolean disposeCts)
at Program.<>c__DisplayClass0_0.<<Main>b__1>d.MoveNext() in C:\Users\stoub\source\repos\HTTP2Stress\HTTP2Stress\Program.cs:line 100
--- End of stack trace from previous location where exception was thrown ---
at Program.<>c__DisplayClass0_2.<<Main>b__13>d.MoveNext() in C:\Users\stoub\source\repos\HTTP2Stress\HTTP2Stress\Program.cs:line 173
```
**Code:**
```C#
using Microsoft.AspNetCore;
using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Hosting;
using Microsoft.AspNetCore.Http;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Hosting;
using Microsoft.Extensions.Logging;
using System;
using System.IO;
using System.Linq;
using System.Net.Http;
using System.Net.Security;
using System.Runtime.InteropServices;
using System.Security.Cryptography;
using System.Security.Cryptography.X509Certificates;
using System.Threading;
using System.Threading.Tasks;
public class Program
{
public static void Main(string[] args)
{
Console.WriteLine(" .NET Core: " + Path.GetFileName(Path.GetDirectoryName(typeof(object).Assembly.Location)));
Console.WriteLine("ASP.NET Core: " + Path.GetFileName(Path.GetDirectoryName(typeof(WebHost).Assembly.Location)));
const int ConcurrentRequests = 10; // 90;
const int HttpsPort = 5001;
const int AppxContentLength = 10_000; // 300_000
const int PrintEveryNRequests = 1000;
var httpVersion = new Version(2, 0);
var serverUri = new Uri("https://localhost:" + HttpsPort);
string content = string.Concat(Enumerable.Repeat("1234567890", AppxContentLength / 10));
void ValidateResponseVersion(HttpResponseMessage m)
{
if (m.Version != httpVersion)
{
throw new Exception("Unexpected response version: " + m.Version);
}
}
var clientOperations = new (string, Func<HttpClient, Task<string>>)[]
{
("GET", client => client.GetStringAsync(serverUri)),
("POST", async client =>
{
using (HttpResponseMessage m = await client.PostAsync(serverUri, new StringContent(content)))
{
ValidateResponseVersion(m);
return await m.Content.ReadAsStringAsync();
}
}),
("POST w/ Expect: 100-continue", async client =>
{
using (var req = new HttpRequestMessage(HttpMethod.Post, serverUri) { Version = httpVersion })
{
req.Content = new StringContent(content);
req.Headers.ExpectContinue = true;
using (HttpResponseMessage m = await client.SendAsync(req, HttpCompletionOption.ResponseHeadersRead))
{
ValidateResponseVersion(m);
return await m.Content.ReadAsStringAsync();
}
}
}),
("GET w/ Cancellation", async client =>
{
using (var req = new HttpRequestMessage(HttpMethod.Get, serverUri) { Version = httpVersion })
{
try
{
var cts = new CancellationTokenSource();
Task<HttpResponseMessage> t = client.SendAsync(req, HttpCompletionOption.ResponseHeadersRead, cts.Token);
await Task.Delay(1);
cts.Cancel();
using (HttpResponseMessage m = await t)
{
ValidateResponseVersion(m);
return await m.Content.ReadAsStringAsync();
}
}
catch (OperationCanceledException) { return null; }
}
}),
("POST w/ cancellation", async client =>
{
using (var req = new HttpRequestMessage(HttpMethod.Post, serverUri) { Version = httpVersion })
{
try
{
req.Content = new StringContent(content);
var cts = new CancellationTokenSource();
Task<HttpResponseMessage> t = client.SendAsync(req, HttpCompletionOption.ResponseHeadersRead, cts.Token);
await Task.Delay(1);
cts.Cancel();
using (HttpResponseMessage m = await t)
{
ValidateResponseVersion(m);
return await m.Content.ReadAsStringAsync();
}
}
catch (OperationCanceledException) { return null; }
}
}),
};
Console.WriteLine("Starting kestrel...");
WebHost
.CreateDefaultBuilder(args)
.ConfigureLogging(log => log.AddFilter("Microsoft.AspNetCore", level => false))
.UseKestrel(ko =>
{
ko.ListenLocalhost(HttpsPort, listenOptions =>
{
using (RSA rsa = RSA.Create())
{
var certReq = new CertificateRequest("CN=localhost", rsa, HashAlgorithmName.SHA256, RSASignaturePadding.Pkcs1);
certReq.CertificateExtensions.Add(new X509BasicConstraintsExtension(false, false, 0, false));
certReq.CertificateExtensions.Add(new X509EnhancedKeyUsageExtension(new OidCollection { new Oid("1.3.6.1.5.5.7.3.1") }, false));
certReq.CertificateExtensions.Add(new X509KeyUsageExtension(X509KeyUsageFlags.DigitalSignature, false));
X509Certificate2 cert = certReq.CreateSelfSigned(DateTimeOffset.UtcNow.AddMonths(-1), DateTimeOffset.UtcNow.AddMonths(1));
if (RuntimeInformation.IsOSPlatform(OSPlatform.Windows))
{
cert = new X509Certificate2(cert.Export(X509ContentType.Pfx));
}
listenOptions.UseHttps(cert);
}
});
})
.Configure(app =>
{
app.UseRouting();
app.UseEndpoints(endpoints =>
{
endpoints.MapGet("/", async context =>
{
await context.Response.WriteAsync(content);
});
endpoints.MapPost("/", async context =>
{
await context.Request.Body.CopyToAsync(context.Response.Body);
});
});
})
.Build()
.Start();
Console.WriteLine("Starting clients...");
using (var handler = new SocketsHttpHandler() { SslOptions = new SslClientAuthenticationOptions { RemoteCertificateValidationCallback = delegate { return true; } } })
using (var client = new HttpClient(handler) { DefaultRequestVersion = httpVersion })
{
long success = 0, fail = 0;
void Increment(ref long counter)
{
if (Interlocked.Increment(ref counter) % PrintEveryNRequests == 0)
{
Console.WriteLine($"Success: {Volatile.Read(ref success)}, Fail: {Volatile.Read(ref fail)}");
}
}
Task.WaitAll(Enumerable.Range(0, ConcurrentRequests).Select(taskNum => Task.Run(async () =>
{
Console.WriteLine("Starting client " + taskNum);
for (long i = 0; ; i++)
{
(string operation, Func<HttpClient, Task<string>> func) = clientOperations[i % clientOperations.Length];
try
{
string result = await func(client);
if (result != null && result != content)
{
throw new Exception("Unexpected response. Got: " + result);
}
Increment(ref success);
}
catch (Exception e)
{
Increment(ref fail);
lock (Console.Out)
{
Console.ForegroundColor = ConsoleColor.Yellow;
Console.WriteLine($"Error from iteration {i} ({operation}) in task {taskNum} with {success} successes / {fail} fails:");
Console.ResetColor();
Console.WriteLine(e);
Console.WriteLine();
}
}
}
})).ToArray());
}
}
}
```
cc: @geoffkizer, @wfurt, @scalablecory, @davidsh, @halter73
|
reli
|
stress issues with httpclient kestrel and http i m opening one issue right now because i don t have individual repros for each of the following issues and it’s possible one or more are related we can decide if when to break out individual issues i wrote a simple stress program to exercise many concurrent requests from httpclient against kestrel specifically for http in doing so i encountered a variety of failures in a very short period of time seconds i ve not investigated any of these some are obviously issues with socketshttphandler but some could be on either end of the connection and a few are likely to be kestrel the below is based on the most recent daily build as of now net core asp net core these were encountered by varying some of the constants e g concurrentrequests appxcontentlength as well as by commenting and uncommenting out which client operations were available to be performed in a given run error system io ioexception the request was aborted system net http the http request failed with protocol error frame size error at system net http readframeasync boolean initialframe at system net http processincomingframesasync end of inner exception stack trace at system net http tryreadfrombuffer span buffer at system net http readdataasync memory buffer cancellationtoken cancellationtoken at system io stream copytoasyncinternal stream destination buffersize cancellationtoken cancellationtoken at system net http httpclient getstringasynccore task gettask at program c b d movenext in c users stoub source repos program cs line error system net http httprequestexception an error occurred while sending the request system io ioexception the request was aborted system net http the http request failed with protocol error no error end of inner exception stack trace at system net http tryensureheaders at system net http readresponseheadersasync at system net http sendasync httprequestmessage request cancellationtoken cancellationtoken end of inner exception stack trace at system net http sendasync httprequestmessage request cancellationtoken cancellationtoken at system net http httpconnectionpool sendwithretryasync httprequestmessage request boolean dorequestauth cancellationtoken cancellationtoken at system net http redirecthandler sendasync httprequestmessage request cancellationtoken cancellationtoken at system net http httpclient finishsendasyncunbuffered task sendtask httprequestmessage request cancellationtokensource cts boolean disposects at system net http httpclient getstringasynccore task gettask at program c b d movenext in c users stoub source repos program cs line error system nullreferenceexception object reference not set to an instance of an object at system net http redirecthandler geturiforredirect uri requesturi httpresponsemessage response at system net http redirecthandler sendasync httprequestmessage request cancellationtoken cancellationtoken at system net http httpclient finishsendasyncunbuffered task sendtask httprequestmessage request cancellationtokensource cts boolean disposects at program c b d movenext in c users stoub source repos program cs line end of stack trace from previous location where exception was thrown at program c b d movenext in c users stoub source repos program cs line error system net http httprequestexception an error occurred while sending the request system net http the http request failed with protocol error protocol error the http request encountered a protocol error receiving data while in the state expectingstatus at system net http onresponsedata readonlyspan buffer boolean endstream at system net http processdataframe frameheader frameheader at system net http processincomingframesasync end of inner exception stack trace at system net http sendasync httprequestmessage request cancellationtoken cancellationtoken at system net http httpconnectionpool sendwithretryasync httprequestmessage request boolean dorequestauth cancellationtoken cancellationtoken at system net http redirecthandler sendasync httprequestmessage request cancellationtoken cancellationtoken at system net http httpclient finishsendasyncunbuffered task sendtask httprequestmessage request cancellationtokensource cts boolean disposects at program c b d movenext in c users stoub source repos program cs line end of stack trace from previous location where exception was thrown at program c b d movenext in c users stoub source repos program cs line error system invalidoperationexception the stream was already consumed it cannot be read again at system net http httpconnectionresponsecontent consumestream at system net http httpconnectionresponsecontent serializetostreamasync stream stream transportcontext context cancellationtoken cancellationtoken at system net http httpcontent loadintobufferasynccore task serializetostreamtask memorystream tempbuffer at system net http httpclient finishsendasyncbuffered task sendtask httprequestmessage request cancellationtokensource cts boolean disposects at program c b d movenext in c users stoub source repos program cs line end of stack trace from previous location where exception was thrown at program c b d movenext in c users stoub source repos program cs line error system exception unexpected response got at program c b d movenext in c users stoub source repos program cs line error system net http httprequestexception an error occurred while sending the request system objectdisposedexception cannot access a disposed object object name creditmanager at system net http taskcompletionsourcewithcancellation waitwithcancellationasync cancellationtoken cancellationtoken at system net http sendheadersasync httprequestmessage request cancellationtoken cancellationtoken boolean mustflush at system net http sendasync httprequestmessage request cancellationtoken cancellationtoken end of inner exception stack trace at system net http sendasync httprequestmessage request cancellationtoken cancellationtoken at system net http httpconnectionpool sendwithretryasync httprequestmessage request boolean dorequestauth cancellationtoken cancellationtoken at system net http redirecthandler sendasync httprequestmessage request cancellationtoken cancellationtoken at system net http httpclient finishsendasyncunbuffered task sendtask httprequestmessage request cancellationtokensource cts boolean disposects at program c b d movenext in c users stoub source repos program cs line end of stack trace from previous location where exception was thrown at program c b d movenext in c users stoub source repos program cs line error system net http httprequestexception an error occurred while sending the request system io ioexception the request was aborted system net http the http request failed with protocol error stream closed end of inner exception stack trace at system net http tryensureheaders at system net http readresponseheadersasync at system net http sendasync httprequestmessage request cancellationtoken cancellationtoken end of inner exception stack trace at system net http sendasync httprequestmessage request cancellationtoken cancellationtoken at system net http httpconnectionpool sendwithretryasync httprequestmessage request boolean dorequestauth cancellationtoken cancellationtoken at system net http redirecthandler sendasync httprequestmessage request cancellationtoken cancellationtoken at system net http httpclient finishsendasyncunbuffered task sendtask httprequestmessage request cancellationtokensource cts boolean disposects at program c b d movenext in c users stoub source repos program cs line end of stack trace from previous location where exception was thrown at program c b d movenext in c users stoub source repos program cs line error system net http httprequestexception an error occurred while sending the request system io ioexception the response ended prematurely with at least additional bytes expected at system net http readatleastasync stream stream memory buffer minreadbytes at system net http ensureincomingbytesasync minreadbytes at system net http readframeasync boolean initialframe at system net http processincomingframesasync end of inner exception stack trace at system net http sendasync httprequestmessage request cancellationtoken cancellationtoken at system net http httpconnectionpool sendwithretryasync httprequestmessage request boolean dorequestauth cancellationtoken cancellationtoken at system net http redirecthandler sendasync httprequestmessage request cancellationtoken cancellationtoken at system net http httpclient finishsendasyncunbuffered task sendtask httprequestmessage request cancellationtokensource cts boolean disposects at program c b d movenext in c users stoub source repos program cs line end of stack trace from previous location where exception was thrown at program c b d movenext in c users stoub source repos program cs line error system net http httprequestexception an error occurred while sending the request system net http the http request failed with protocol error protocol error received an http pseudo header as a trailing header at system net http onresponseheader readonlyspan name readonlyspan value at system net http c b object state readonlyspan name readonlyspan value at system net http hpack hpackdecoder onindexedheaderfield index headercallback onheader object onheaderstate at system net http hpack hpackdecoder decode readonlyspan data boolean endheaders headercallback onheader object onheaderstate at system net http processheadersframe frameheader frameheader at system net http processincomingframesasync end of inner exception stack trace at system net http sendasync httprequestmessage request cancellationtoken cancellationtoken at system net http httpconnectionpool sendwithretryasync httprequestmessage request boolean dorequestauth cancellationtoken cancellationtoken at system net http redirecthandler sendasync httprequestmessage request cancellationtoken cancellationtoken at system net http httpclient finishsendasyncunbuffered task sendtask httprequestmessage request cancellationtokensource cts boolean disposects at program c b d movenext in c users stoub source repos program cs line end of stack trace from previous location where exception was thrown at program c b d movenext in c users stoub source repos program cs line code c using microsoft aspnetcore using microsoft aspnetcore builder using microsoft aspnetcore hosting using microsoft aspnetcore http using microsoft extensions dependencyinjection using microsoft extensions hosting using microsoft extensions logging using system using system io using system linq using system net http using system net security using system runtime interopservices using system security cryptography using system security cryptography using system threading using system threading tasks public class program public static void main string args console writeline net core path getfilename path getdirectoryname typeof object assembly location console writeline asp net core path getfilename path getdirectoryname typeof webhost assembly location const int concurrentrequests const int httpsport const int appxcontentlength const int printeverynrequests var httpversion new version var serveruri new uri httpsport string content string concat enumerable repeat appxcontentlength void validateresponseversion httpresponsemessage m if m version httpversion throw new exception unexpected response version m version var clientoperations new string func get client client getstringasync serveruri post async client using httpresponsemessage m await client postasync serveruri new stringcontent content validateresponseversion m return await m content readasstringasync post w expect continue async client using var req new httprequestmessage httpmethod post serveruri version httpversion req content new stringcontent content req headers expectcontinue true using httpresponsemessage m await client sendasync req httpcompletionoption responseheadersread validateresponseversion m return await m content readasstringasync get w cancellation async client using var req new httprequestmessage httpmethod get serveruri version httpversion try var cts new cancellationtokensource task t client sendasync req httpcompletionoption responseheadersread cts token await task delay cts cancel using httpresponsemessage m await t validateresponseversion m return await m content readasstringasync catch operationcanceledexception return null post w cancellation async client using var req new httprequestmessage httpmethod post serveruri version httpversion try req content new stringcontent content var cts new cancellationtokensource task t client sendasync req httpcompletionoption responseheadersread cts token await task delay cts cancel using httpresponsemessage m await t validateresponseversion m return await m content readasstringasync catch operationcanceledexception return null console writeline starting kestrel webhost createdefaultbuilder args configurelogging log log addfilter microsoft aspnetcore level false usekestrel ko ko listenlocalhost httpsport listenoptions using rsa rsa rsa create var certreq new certificaterequest cn localhost rsa hashalgorithmname rsasignaturepadding certreq certificateextensions add new false false false certreq certificateextensions add new new oidcollection new oid false certreq certificateextensions add new digitalsignature false cert certreq createselfsigned datetimeoffset utcnow addmonths datetimeoffset utcnow addmonths if runtimeinformation isosplatform osplatform windows cert new cert export pfx listenoptions usehttps cert configure app app userouting app useendpoints endpoints endpoints mapget async context await context response writeasync content endpoints mappost async context await context request body copytoasync context response body build start console writeline starting clients using var handler new socketshttphandler ssloptions new sslclientauthenticationoptions remotecertificatevalidationcallback delegate return true using var client new httpclient handler defaultrequestversion httpversion long success fail void increment ref long counter if interlocked increment ref counter printeverynrequests console writeline success volatile read ref success fail volatile read ref fail task waitall enumerable range concurrentrequests select tasknum task run async console writeline starting client tasknum for long i i string operation func func clientoperations try string result await func client if result null result content throw new exception unexpected response got result increment ref success catch exception e increment ref fail lock console out console foregroundcolor consolecolor yellow console writeline error from iteration i operation in task tasknum with success successes fail fails console resetcolor console writeline e console writeline toarray cc geoffkizer wfurt scalablecory davidsh
| 1
|
35,295
| 14,662,103,234
|
IssuesEvent
|
2020-12-29 06:15:03
|
MicrosoftDocs/azure-docs
|
https://api.github.com/repos/MicrosoftDocs/azure-docs
|
closed
|
Link and document GStream for Linux install, not only for Windows to enable compressed audio input to Speech SDK
|
cognitive-services/svc cxp doc-idea speech-service/subsvc triaged
|
The pages says " Developers need to install several dependencies and plugins, see Installing on Windows.". The page should also include an alterative link to the Linux install of GStream, as develoers may be using Linux and not Windows.
https://gstreamer.freedesktop.org/documentation/installing/on-linux.html?gi-language=c
The text should discuss both Windows and Linux with regards to setting up GStream for Speech SDK.
Thanks,
Darren
---
#### Document Details
⚠ *Do not edit this section. It is required for docs.microsoft.com ➟ GitHub issue linking.*
* ID: 095c74d0-66b3-9cd7-4588-291bf4f56a47
* Version Independent ID: 8125527b-407f-c34f-57e8-fea89db144e8
* Content: [Stream codec compressed audio with the Speech SDK - Speech service - Azure Cognitive Services](https://docs.microsoft.com/en-us/azure/cognitive-services/speech-service/how-to-use-codec-compressed-audio-input-streams?tabs=debian&pivots=programming-language-csharp#prerequisites)
* Content Source: [articles/cognitive-services/Speech-Service/how-to-use-codec-compressed-audio-input-streams.md](https://github.com/MicrosoftDocs/azure-docs/blob/master/articles/cognitive-services/Speech-Service/how-to-use-codec-compressed-audio-input-streams.md)
* Service: **cognitive-services**
* Sub-service: **speech-service**
* GitHub Login: @amitkumarshukla
* Microsoft Alias: **amishu**
|
2.0
|
Link and document GStream for Linux install, not only for Windows to enable compressed audio input to Speech SDK -
The pages says " Developers need to install several dependencies and plugins, see Installing on Windows.". The page should also include an alterative link to the Linux install of GStream, as develoers may be using Linux and not Windows.
https://gstreamer.freedesktop.org/documentation/installing/on-linux.html?gi-language=c
The text should discuss both Windows and Linux with regards to setting up GStream for Speech SDK.
Thanks,
Darren
---
#### Document Details
⚠ *Do not edit this section. It is required for docs.microsoft.com ➟ GitHub issue linking.*
* ID: 095c74d0-66b3-9cd7-4588-291bf4f56a47
* Version Independent ID: 8125527b-407f-c34f-57e8-fea89db144e8
* Content: [Stream codec compressed audio with the Speech SDK - Speech service - Azure Cognitive Services](https://docs.microsoft.com/en-us/azure/cognitive-services/speech-service/how-to-use-codec-compressed-audio-input-streams?tabs=debian&pivots=programming-language-csharp#prerequisites)
* Content Source: [articles/cognitive-services/Speech-Service/how-to-use-codec-compressed-audio-input-streams.md](https://github.com/MicrosoftDocs/azure-docs/blob/master/articles/cognitive-services/Speech-Service/how-to-use-codec-compressed-audio-input-streams.md)
* Service: **cognitive-services**
* Sub-service: **speech-service**
* GitHub Login: @amitkumarshukla
* Microsoft Alias: **amishu**
|
non_reli
|
link and document gstream for linux install not only for windows to enable compressed audio input to speech sdk the pages says developers need to install several dependencies and plugins see installing on windows the page should also include an alterative link to the linux install of gstream as develoers may be using linux and not windows the text should discuss both windows and linux with regards to setting up gstream for speech sdk thanks darren document details ⚠ do not edit this section it is required for docs microsoft com ➟ github issue linking id version independent id content content source service cognitive services sub service speech service github login amitkumarshukla microsoft alias amishu
| 0
|
1,153
| 13,423,694,321
|
IssuesEvent
|
2020-09-06 00:01:07
|
dotnet/roslyn
|
https://api.github.com/repos/dotnet/roslyn
|
closed
|
Serialize document states without loading text
|
Area-IDE Bug Concept-OOP Tenet-Reliability help wanted
|
**Version Used**: 16.6 Preview 3
Currently `DocumentStateChecksums` loads the text of documents here:
https://github.com/dotnet/roslyn/blob/1b17eae2aaa77c8c5f057dc657fc2a9d93fadb59/src/Workspaces/Core/Portable/Workspace/Solution/StateChecksums.cs#L239
This operation can load a large number of documents into a dictionary which are not all in use at the same time. This operation should instead place a _recoverable_ text in the dictionary, which can be loaded on demand at a point where it is needed.
🔗 This is the root cause of https://developercommunity.visualstudio.com/content/problem/1008598/vs-2019-constantly-crashing-because-of-addition-of.html
|
True
|
Serialize document states without loading text - **Version Used**: 16.6 Preview 3
Currently `DocumentStateChecksums` loads the text of documents here:
https://github.com/dotnet/roslyn/blob/1b17eae2aaa77c8c5f057dc657fc2a9d93fadb59/src/Workspaces/Core/Portable/Workspace/Solution/StateChecksums.cs#L239
This operation can load a large number of documents into a dictionary which are not all in use at the same time. This operation should instead place a _recoverable_ text in the dictionary, which can be loaded on demand at a point where it is needed.
🔗 This is the root cause of https://developercommunity.visualstudio.com/content/problem/1008598/vs-2019-constantly-crashing-because-of-addition-of.html
|
reli
|
serialize document states without loading text version used preview currently documentstatechecksums loads the text of documents here this operation can load a large number of documents into a dictionary which are not all in use at the same time this operation should instead place a recoverable text in the dictionary which can be loaded on demand at a point where it is needed 🔗 this is the root cause of
| 1
|
128,884
| 5,078,715,585
|
IssuesEvent
|
2016-12-28 16:30:45
|
openaddresses/openaddresses
|
https://api.github.com/repos/openaddresses/openaddresses
|
closed
|
Gatineau, QC, CA
|
data-priority-2 ready for PR
|
https://github.com/openaddresses/openaddresses/blob/master/sources/ca/qc/gatineau.json
Way back I notified you that the click through didnt work for gatineau, because you needed to accept the license terms. I've been processing Gatineau address data in the CSV format to add to osm and upload that month's file to dropbox. Would it be useful for me to give you a dropbox link to the latest file that I could update when I update the file in osm:
https://www.dropbox.com/s/oddopnkftwsytju/ADRESSE_LATEST.7z?dl=1
|
1.0
|
Gatineau, QC, CA - https://github.com/openaddresses/openaddresses/blob/master/sources/ca/qc/gatineau.json
Way back I notified you that the click through didnt work for gatineau, because you needed to accept the license terms. I've been processing Gatineau address data in the CSV format to add to osm and upload that month's file to dropbox. Would it be useful for me to give you a dropbox link to the latest file that I could update when I update the file in osm:
https://www.dropbox.com/s/oddopnkftwsytju/ADRESSE_LATEST.7z?dl=1
|
non_reli
|
gatineau qc ca way back i notified you that the click through didnt work for gatineau because you needed to accept the license terms i ve been processing gatineau address data in the csv format to add to osm and upload that month s file to dropbox would it be useful for me to give you a dropbox link to the latest file that i could update when i update the file in osm
| 0
|
1,076
| 12,880,033,701
|
IssuesEvent
|
2020-07-12 02:44:03
|
GoogleChrome/web.dev
|
https://api.github.com/repos/GoogleChrome/web.dev
|
closed
|
Reliable guide - document handling subresource requests
|
new content reliable stale
|
This guide will cover:
- Mixing and matching the right strategy for each type of subresource request.
- Exploration of cache expiration, opaque responses, and quota best practices.
|
True
|
Reliable guide - document handling subresource requests - This guide will cover:
- Mixing and matching the right strategy for each type of subresource request.
- Exploration of cache expiration, opaque responses, and quota best practices.
|
reli
|
reliable guide document handling subresource requests this guide will cover mixing and matching the right strategy for each type of subresource request exploration of cache expiration opaque responses and quota best practices
| 1
|
834
| 10,789,155,223
|
IssuesEvent
|
2019-11-05 11:15:55
|
sohaibaslam/learning_site
|
https://api.github.com/repos/sohaibaslam/learning_site
|
closed
|
Broken Crawler: adidasatjd (CN)
|
crawler broken/unreliable
|
name: adidasatjd-cn
name: filajd-cn
name: liningatjd-cn
name: nikeatjd-cn
mixin_count: 4
|
True
|
Broken Crawler: adidasatjd (CN) - name: adidasatjd-cn
name: filajd-cn
name: liningatjd-cn
name: nikeatjd-cn
mixin_count: 4
|
reli
|
broken crawler adidasatjd cn name adidasatjd cn name filajd cn name liningatjd cn name nikeatjd cn mixin count
| 1
|
99
| 3,835,669,237
|
IssuesEvent
|
2016-04-01 15:08:15
|
dotnet/coreclr
|
https://api.github.com/repos/dotnet/coreclr
|
opened
|
SIGABRT_System.Globalization.Native.so!UErrorCodeToBool
|
bug reliability
|
**The notes in this bug are referencing the dump [projectk-23923-00-xlsh8-amd64chk_01A2.zip](https://dotnetjobresults.blob.core.windows.net/projectk-23923-00-xlsh8-stress/f7b98499-069d-4c64-b420-af5c211233a3/stress/generated/00_01hr/projectk-23923-00-xlsh8-amd64chk_01A2/projectk-23923-00-xlsh8-amd64chk_01A2.csproj/projectk-23923-00-xlsh8-amd64chk_01A2.zip?sv=2015-04-05&sr=c&sig=O%2FEO8ALizJpZh%2Bmm6lQNB%2BPinsMWLz17JO24BdFDg4U%3D&se=2017-03-29T07:34:00Z&sp=rw), more dumps are availabie for this issue if needed**
**This failure is due to an assert in System.Globalization.Native, because a call to GetLocal returned a status of U_BUFFER_OVERFLOW_ERROR. However there seems to be more going on in this dump, as the stack of this thread seems to be torn either with a corrupted stack or corrupted unwind info.**
STOP_REASON:
SIGABRT
FAILURE_HASH:
SIGABRT_System.Globalization.Native.so!UErrorCodeToBool
FAULT_STACK:
libc.so.6!__GI_raise
libc.so.6!__GI_abort
libc.so.6!__assert_fail_base
libc.so.6!__GI___assert_fail
System.Globalization.Native.so!UErrorCodeToBool
System.Globalization.Native.so!GlobalizationNative_GetLocaleName
mscorlib.ni!DomainNeutralILStubClass.IL_STUB_PInvoke
UNKNOWN!UNKNOWN
FAULT_SYMBOL:
System.Globalization.Native.so!UErrorCodeToBool
**From looking at the values from frame 5 and the code we can see that we are asserting because a status of U_BUFFER_OVERFLOW_ERROR was returned from GetLocal**
(lldb) fr s 5
frame #5: 0x00007f68dd5d4302 System.Globalization.Native.so`::GlobalizationNative_GetLocaleName(localeName=0x00007f68480300f4, value=0x00007f68d8d68a60, valueLength=157) + 210 at locale.cpp:130
(lldb) fr v
(const UChar *) localeName = 0x00007f68480300f4
(int32_t) valueLength = 157
(UChar *) value = 0x00007f68d8d68a60
(UErrorCode) status = U_BUFFER_OVERFLOW_ERROR
(char [157]) localeNameBuffer = "notavalidculture"
extern "C" int32_t GlobalizationNative_GetLocaleName(const UChar* localeName, UChar* value, int32_t valueLength)
{
UErrorCode status = U_ZERO_ERROR;
char localeNameBuffer[ULOC_FULLNAME_CAPACITY];
GetLocale(localeName, localeNameBuffer, ULOC_FULLNAME_CAPACITY, true, &status);
...
return UErrorCodeToBool(status);
}
int32_t UErrorCodeToBool(UErrorCode status)
{
...
// assert errors that should never occur
assert(status != U_BUFFER_OVERFLOW_ERROR);
...
}
**Looking at the thread with clrstack shows an inconsistent stack as well. We have managed code on the stack with no native code below.**
libc.so.6!__GI_raise + 57 at /build/buildd/eglibc-2.19/signal/../nptl/sysdeps/unix/sysv/linux/raise.c:56
libc.so.6!__GI_abort + 328 at /build/buildd/eglibc-2.19/stdlib/abort.c:91
libc.so.6!__assert_fail_base + 294 at /build/buildd/eglibc-2.19/assert/assert.c:92
libc.so.6 + -1
System.Globalization.Native.so!UErrorCodeToBool(UErrorCode) + 88 at /root/coreclr/src/corefx/System.Globalization.Native/locale.cpp:21
System.Globalization.Native.so!GlobalizationNative_GetLocaleName + 210 at /root/coreclr/src/corefx/System.Globalization.Native/locale.cpp:130
[InlinedCallFrame: 00007f68d8d68bb0] mscorlib.ni.dll!Interop+GlobalizationInterop.GetLocaleName(System.String, System.Text.StringBuilder, Int32)
[InlinedCallFrame: 00007f68d8d68bb0] mscorlib.ni.dll!Interop+GlobalizationInterop.GetLocaleName(System.String, System.Text.StringBuilder, Int32)
mscorlib.ni.dll!DomainNeutralILStubClass.IL_STUB_PInvoke(System.String, System.Text.StringBuilder, Int32) + 389
mscorlib.ni.dll!System.Globalization.CultureData.GetLocaleName(System.String, System.String ByRef) + 53
mscorlib.ni.dll!System.Globalization.CultureData.InitCultureData() + 302
mscorlib.ni.dll!System.Globalization.CultureData.CreateCultureData(System.String, Boolean) + 120
mscorlib.ni.dll!System.Globalization.CultureData.GetCultureData(System.String, Boolean) + 356
mscorlib.ni.dll!System.Globalization.CultureInfo..ctor(System.String, Boolean) + 39
CultureInfoConstructor2.dll!System.Globalization.Tests.CultureInfoConstructor2.<TestInvalidCulture>b__2() + 82
xunit.assert.dll!Xunit.Assert.RecordException(System.Action) + 30
xunit.assert.dll!Xunit.Assert.Throws[[System.__Canon, mscorlib]](System.Action) + 59
CultureInfoConstructor2.dll!System.Globalization.Tests.CultureInfoConstructor2.TestInvalidCulture() + 161
projectk-23923-00-xlsh8-amd64chk_01A2.exe!stress.generated.UnitTests.UT2() + 74
stress.execution.dll!stress.execution.UnitTest.Execute() + 168
stress.execution.dll!stress.execution.DedicatedThreadWorkerStrategy.RunWorker(stress.execution.ITestPattern, System.Threading.CancellationToken) + 110
stress.execution.dll!stress.execution.DedicatedThreadWorkerStrategy+<>c__DisplayClass1_0.<SpawnWorker>b__0() + 113
mscorlib.ni.dll!System.Threading.Tasks.Task.Execute() + 70
mscorlib.ni.dll!System.Threading.ExecutionContext.Run(System.Threading.ExecutionContext, System.Threading.ContextCallback, System.Object) + 149
mscorlib.ni.dll!System.Threading.Tasks.Task.ExecuteWithThreadLocal(System.Threading.Tasks.Task ByRef) + 660
mscorlib.ni.dll!System.Threading.Tasks.Task.ExecuteEntry(Boolean) + 152
mscorlib.ni.dll!System.Threading.ExecutionContext.Run(System.Threading.ExecutionContext, System.Threading.ContextCallback, System.Object) + 149
[GCFrame: 00007f68d8d69648]
[DebuggerU2MCatchHandlerFrame: 00007f68d8d69b38]
**Looking at the thread natively through the debugger frame 7 has an invalid ip, so it seems either the stack or unwind info has become corrupt.**
(lldb) bt
* thread #1: tid = 23459, 0x00007f68e1652cc9 libc.so.6`__GI_raise(sig=6) + 57 at raise.c:56, name = 'corerun', stop reason = signal SIGABRT
frame #0: 0x00007f68e1652cc9 libc.so.6`__GI_raise(sig=6) + 57 at raise.c:56
frame #1: 0x00007f68e16560d8 libc.so.6`__GI_abort + 328 at abort.c:89
frame #2: 0x00007f68e164bb86 libc.so.6`__assert_fail_base(fmt=<unavailable>, assertion=<unavailable>, file=<unavailable>, line=<unavailable>, function=<unavailable>) + 294 at assert.c:92
frame #3: 0x00007f68e164bc32 libc.so.6`__GI___assert_fail(assertion=<unavailable>, file=<unavailable>, line=<unavailable>, function=<unavailable>) + 66 at assert.c:101
frame #4: 0x00007f68dd5d3ed8 System.Globalization.Native.so`UErrorCodeToBool(status=U_BUFFER_OVERFLOW_ERROR) + 88 at locale.cpp:20
* frame #5: 0x00007f68dd5d4302 System.Globalization.Native.so`::GlobalizationNative_GetLocaleName(localeName=0x00007f68480300f4, value=0x00007f68d8d68a60, valueLength=157) + 210 at locale.cpp:130
frame #6: 0x00007f6866fefa45
frame #7: 0x9abcdef012345678
|
True
|
SIGABRT_System.Globalization.Native.so!UErrorCodeToBool - **The notes in this bug are referencing the dump [projectk-23923-00-xlsh8-amd64chk_01A2.zip](https://dotnetjobresults.blob.core.windows.net/projectk-23923-00-xlsh8-stress/f7b98499-069d-4c64-b420-af5c211233a3/stress/generated/00_01hr/projectk-23923-00-xlsh8-amd64chk_01A2/projectk-23923-00-xlsh8-amd64chk_01A2.csproj/projectk-23923-00-xlsh8-amd64chk_01A2.zip?sv=2015-04-05&sr=c&sig=O%2FEO8ALizJpZh%2Bmm6lQNB%2BPinsMWLz17JO24BdFDg4U%3D&se=2017-03-29T07:34:00Z&sp=rw), more dumps are availabie for this issue if needed**
**This failure is due to an assert in System.Globalization.Native, because a call to GetLocal returned a status of U_BUFFER_OVERFLOW_ERROR. However there seems to be more going on in this dump, as the stack of this thread seems to be torn either with a corrupted stack or corrupted unwind info.**
STOP_REASON:
SIGABRT
FAILURE_HASH:
SIGABRT_System.Globalization.Native.so!UErrorCodeToBool
FAULT_STACK:
libc.so.6!__GI_raise
libc.so.6!__GI_abort
libc.so.6!__assert_fail_base
libc.so.6!__GI___assert_fail
System.Globalization.Native.so!UErrorCodeToBool
System.Globalization.Native.so!GlobalizationNative_GetLocaleName
mscorlib.ni!DomainNeutralILStubClass.IL_STUB_PInvoke
UNKNOWN!UNKNOWN
FAULT_SYMBOL:
System.Globalization.Native.so!UErrorCodeToBool
**From looking at the values from frame 5 and the code we can see that we are asserting because a status of U_BUFFER_OVERFLOW_ERROR was returned from GetLocal**
(lldb) fr s 5
frame #5: 0x00007f68dd5d4302 System.Globalization.Native.so`::GlobalizationNative_GetLocaleName(localeName=0x00007f68480300f4, value=0x00007f68d8d68a60, valueLength=157) + 210 at locale.cpp:130
(lldb) fr v
(const UChar *) localeName = 0x00007f68480300f4
(int32_t) valueLength = 157
(UChar *) value = 0x00007f68d8d68a60
(UErrorCode) status = U_BUFFER_OVERFLOW_ERROR
(char [157]) localeNameBuffer = "notavalidculture"
extern "C" int32_t GlobalizationNative_GetLocaleName(const UChar* localeName, UChar* value, int32_t valueLength)
{
UErrorCode status = U_ZERO_ERROR;
char localeNameBuffer[ULOC_FULLNAME_CAPACITY];
GetLocale(localeName, localeNameBuffer, ULOC_FULLNAME_CAPACITY, true, &status);
...
return UErrorCodeToBool(status);
}
int32_t UErrorCodeToBool(UErrorCode status)
{
...
// assert errors that should never occur
assert(status != U_BUFFER_OVERFLOW_ERROR);
...
}
**Looking at the thread with clrstack shows an inconsistent stack as well. We have managed code on the stack with no native code below.**
libc.so.6!__GI_raise + 57 at /build/buildd/eglibc-2.19/signal/../nptl/sysdeps/unix/sysv/linux/raise.c:56
libc.so.6!__GI_abort + 328 at /build/buildd/eglibc-2.19/stdlib/abort.c:91
libc.so.6!__assert_fail_base + 294 at /build/buildd/eglibc-2.19/assert/assert.c:92
libc.so.6 + -1
System.Globalization.Native.so!UErrorCodeToBool(UErrorCode) + 88 at /root/coreclr/src/corefx/System.Globalization.Native/locale.cpp:21
System.Globalization.Native.so!GlobalizationNative_GetLocaleName + 210 at /root/coreclr/src/corefx/System.Globalization.Native/locale.cpp:130
[InlinedCallFrame: 00007f68d8d68bb0] mscorlib.ni.dll!Interop+GlobalizationInterop.GetLocaleName(System.String, System.Text.StringBuilder, Int32)
[InlinedCallFrame: 00007f68d8d68bb0] mscorlib.ni.dll!Interop+GlobalizationInterop.GetLocaleName(System.String, System.Text.StringBuilder, Int32)
mscorlib.ni.dll!DomainNeutralILStubClass.IL_STUB_PInvoke(System.String, System.Text.StringBuilder, Int32) + 389
mscorlib.ni.dll!System.Globalization.CultureData.GetLocaleName(System.String, System.String ByRef) + 53
mscorlib.ni.dll!System.Globalization.CultureData.InitCultureData() + 302
mscorlib.ni.dll!System.Globalization.CultureData.CreateCultureData(System.String, Boolean) + 120
mscorlib.ni.dll!System.Globalization.CultureData.GetCultureData(System.String, Boolean) + 356
mscorlib.ni.dll!System.Globalization.CultureInfo..ctor(System.String, Boolean) + 39
CultureInfoConstructor2.dll!System.Globalization.Tests.CultureInfoConstructor2.<TestInvalidCulture>b__2() + 82
xunit.assert.dll!Xunit.Assert.RecordException(System.Action) + 30
xunit.assert.dll!Xunit.Assert.Throws[[System.__Canon, mscorlib]](System.Action) + 59
CultureInfoConstructor2.dll!System.Globalization.Tests.CultureInfoConstructor2.TestInvalidCulture() + 161
projectk-23923-00-xlsh8-amd64chk_01A2.exe!stress.generated.UnitTests.UT2() + 74
stress.execution.dll!stress.execution.UnitTest.Execute() + 168
stress.execution.dll!stress.execution.DedicatedThreadWorkerStrategy.RunWorker(stress.execution.ITestPattern, System.Threading.CancellationToken) + 110
stress.execution.dll!stress.execution.DedicatedThreadWorkerStrategy+<>c__DisplayClass1_0.<SpawnWorker>b__0() + 113
mscorlib.ni.dll!System.Threading.Tasks.Task.Execute() + 70
mscorlib.ni.dll!System.Threading.ExecutionContext.Run(System.Threading.ExecutionContext, System.Threading.ContextCallback, System.Object) + 149
mscorlib.ni.dll!System.Threading.Tasks.Task.ExecuteWithThreadLocal(System.Threading.Tasks.Task ByRef) + 660
mscorlib.ni.dll!System.Threading.Tasks.Task.ExecuteEntry(Boolean) + 152
mscorlib.ni.dll!System.Threading.ExecutionContext.Run(System.Threading.ExecutionContext, System.Threading.ContextCallback, System.Object) + 149
[GCFrame: 00007f68d8d69648]
[DebuggerU2MCatchHandlerFrame: 00007f68d8d69b38]
**Looking at the thread natively through the debugger frame 7 has an invalid ip, so it seems either the stack or unwind info has become corrupt.**
(lldb) bt
* thread #1: tid = 23459, 0x00007f68e1652cc9 libc.so.6`__GI_raise(sig=6) + 57 at raise.c:56, name = 'corerun', stop reason = signal SIGABRT
frame #0: 0x00007f68e1652cc9 libc.so.6`__GI_raise(sig=6) + 57 at raise.c:56
frame #1: 0x00007f68e16560d8 libc.so.6`__GI_abort + 328 at abort.c:89
frame #2: 0x00007f68e164bb86 libc.so.6`__assert_fail_base(fmt=<unavailable>, assertion=<unavailable>, file=<unavailable>, line=<unavailable>, function=<unavailable>) + 294 at assert.c:92
frame #3: 0x00007f68e164bc32 libc.so.6`__GI___assert_fail(assertion=<unavailable>, file=<unavailable>, line=<unavailable>, function=<unavailable>) + 66 at assert.c:101
frame #4: 0x00007f68dd5d3ed8 System.Globalization.Native.so`UErrorCodeToBool(status=U_BUFFER_OVERFLOW_ERROR) + 88 at locale.cpp:20
* frame #5: 0x00007f68dd5d4302 System.Globalization.Native.so`::GlobalizationNative_GetLocaleName(localeName=0x00007f68480300f4, value=0x00007f68d8d68a60, valueLength=157) + 210 at locale.cpp:130
frame #6: 0x00007f6866fefa45
frame #7: 0x9abcdef012345678
|
reli
|
sigabrt system globalization native so uerrorcodetobool the notes in this bug are referencing the dump more dumps are availabie for this issue if needed this failure is due to an assert in system globalization native because a call to getlocal returned a status of u buffer overflow error however there seems to be more going on in this dump as the stack of this thread seems to be torn either with a corrupted stack or corrupted unwind info stop reason sigabrt failure hash sigabrt system globalization native so uerrorcodetobool fault stack libc so gi raise libc so gi abort libc so assert fail base libc so gi assert fail system globalization native so uerrorcodetobool system globalization native so globalizationnative getlocalename mscorlib ni domainneutralilstubclass il stub pinvoke unknown unknown fault symbol system globalization native so uerrorcodetobool from looking at the values from frame and the code we can see that we are asserting because a status of u buffer overflow error was returned from getlocal lldb fr s frame system globalization native so globalizationnative getlocalename localename value valuelength at locale cpp lldb fr v const uchar localename t valuelength uchar value uerrorcode status u buffer overflow error char localenamebuffer notavalidculture extern c t globalizationnative getlocalename const uchar localename uchar value t valuelength uerrorcode status u zero error char localenamebuffer getlocale localename localenamebuffer uloc fullname capacity true status return uerrorcodetobool status t uerrorcodetobool uerrorcode status assert errors that should never occur assert status u buffer overflow error looking at the thread with clrstack shows an inconsistent stack as well we have managed code on the stack with no native code below libc so gi raise at build buildd eglibc signal nptl sysdeps unix sysv linux raise c libc so gi abort at build buildd eglibc stdlib abort c libc so assert fail base at build buildd eglibc assert assert c libc so system globalization native so uerrorcodetobool uerrorcode at root coreclr src corefx system globalization native locale cpp system globalization native so globalizationnative getlocalename at root coreclr src corefx system globalization native locale cpp mscorlib ni dll interop globalizationinterop getlocalename system string system text stringbuilder mscorlib ni dll interop globalizationinterop getlocalename system string system text stringbuilder mscorlib ni dll domainneutralilstubclass il stub pinvoke system string system text stringbuilder mscorlib ni dll system globalization culturedata getlocalename system string system string byref mscorlib ni dll system globalization culturedata initculturedata mscorlib ni dll system globalization culturedata createculturedata system string boolean mscorlib ni dll system globalization culturedata getculturedata system string boolean mscorlib ni dll system globalization cultureinfo ctor system string boolean dll system globalization tests b xunit assert dll xunit assert recordexception system action xunit assert dll xunit assert throws system action dll system globalization tests testinvalidculture projectk exe stress generated unittests stress execution dll stress execution unittest execute stress execution dll stress execution dedicatedthreadworkerstrategy runworker stress execution itestpattern system threading cancellationtoken stress execution dll stress execution dedicatedthreadworkerstrategy c b mscorlib ni dll system threading tasks task execute mscorlib ni dll system threading executioncontext run system threading executioncontext system threading contextcallback system object mscorlib ni dll system threading tasks task executewiththreadlocal system threading tasks task byref mscorlib ni dll system threading tasks task executeentry boolean mscorlib ni dll system threading executioncontext run system threading executioncontext system threading contextcallback system object looking at the thread natively through the debugger frame has an invalid ip so it seems either the stack or unwind info has become corrupt lldb bt thread tid libc so gi raise sig at raise c name corerun stop reason signal sigabrt frame libc so gi raise sig at raise c frame libc so gi abort at abort c frame libc so assert fail base fmt assertion file line function at assert c frame libc so gi assert fail assertion file line function at assert c frame system globalization native so uerrorcodetobool status u buffer overflow error at locale cpp frame system globalization native so globalizationnative getlocalename localename value valuelength at locale cpp frame frame
| 1
|
764
| 10,476,216,047
|
IssuesEvent
|
2019-09-23 18:05:13
|
microsoft/BotFramework-DirectLineJS
|
https://api.github.com/repos/microsoft/BotFramework-DirectLineJS
|
opened
|
Happy path: with conversation ID, send a post back with string value
|
Reliability Streaming Extensions
|
1. Start a conversation with conversation ID
1. Send a post back with string value
Make sure the bot can receive it.
|
True
|
Happy path: with conversation ID, send a post back with string value - 1. Start a conversation with conversation ID
1. Send a post back with string value
Make sure the bot can receive it.
|
reli
|
happy path with conversation id send a post back with string value start a conversation with conversation id send a post back with string value make sure the bot can receive it
| 1
|
312
| 6,557,119,814
|
IssuesEvent
|
2017-09-06 16:14:42
|
dotnet/coreclr
|
https://api.github.com/repos/dotnet/coreclr
|
closed
|
GC FinalizeWeakReference issue
|
area-GC os-linux reliability
|
```
(lldb) thread list
Process 27144 stopped
thread #1: tid = 27144, 0x00007f9476bd455d libpthread.so.0`__libc_read + 45, name = 'App'
thread #2: tid = 27145, 0x00007f94762c31d9 libc.so.6`syscall + 25, name = 'App'
thread #3: tid = 27146, 0x00007f94762c31d9 libc.so.6`syscall + 25, name = 'App'
thread #4: tid = 27147, 0x00007f94762be32d libc.so.6`__poll + 45, name = 'App'
thread #5: tid = 27148, 0x00007f9476bd4c7d libpthread.so.0`__GI_open64 + 45, name = 'App'
thread #6: tid = 27149, 0x00007f9476bd130f libpthread.so.0`__pthread_cond_wait + 191, name = 'App'
thread #7: tid = 27150, 0x00007f9476bd16b8 libpthread.so.0`__pthread_cond_timedwait + 296, name = 'App'
thread #8: tid = 27151, 0x00007f9476bd455d libpthread.so.0`__libc_read + 45, name = 'App'
thread #11: tid = 27155, 0x00007f9476bd16b8 libpthread.so.0`__pthread_cond_timedwait + 296, name = 'App'
thread #13: tid = 27157, 0x00007f9476bd16b8 libpthread.so.0`__pthread_cond_timedwait + 296, name = 'App'
thread #14: tid = 27158, 0x00007f94762c31d9 libc.so.6`syscall + 25, name = 'App'
thread #15: tid = 27159, 0x00007f94762c31d9 libc.so.6`syscall + 25, name = 'App'
thread #16: tid = 27160, 0x00007f94762c31d9 libc.so.6`syscall + 25, name = 'App'
thread #17: tid = 27161, 0x00007f94762c31d9 libc.so.6`syscall + 25, name = 'App'
thread #18: tid = 27162, 0x00007f94762c7df3 libc.so.6`epoll_wait + 51, name = 'App'
thread #19: tid = 27163, 0x00007f9476bd16b8 libpthread.so.0`__pthread_cond_timedwait + 296, name = 'App'
thread #21: tid = 27167, 0x00007f9476bd130f libpthread.so.0`__pthread_cond_wait + 191, name = 'App'
thread #23: tid = 27216, 0x00007f9476bd16b8 libpthread.so.0`__pthread_cond_timedwait + 296, name = 'App'
thread #24: tid = 27217, 0x00007f9476bd16b8 libpthread.so.0`__pthread_cond_timedwait + 296, name = 'App'
thread #25: tid = 27218, 0x00007f9476bd16b8 libpthread.so.0`__pthread_cond_timedwait + 296, name = 'App'
thread #26: tid = 27219, 0x00007f9476bd16b8 libpthread.so.0`__pthread_cond_timedwait + 296, name = 'App'
thread #27: tid = 27220, 0x00007f9476bd16b8 libpthread.so.0`__pthread_cond_timedwait + 296, name = 'App'
thread #33: tid = 27480, 0x00007f9476bd16b8 libpthread.so.0`__pthread_cond_timedwait + 296, name = 'App'
* thread #36: tid = 27494, 0x00007f94753f5396 libcoreclr.so`TableFreeSingleHandleToCache(HandleTable*, unsigned int, OBJECTHANDLE__*) + 102, name = 'App', stop reason = signal SIGSEGV: invalid address (fault address: 0x2ecae4b60)
(lldb) sos Threads
ThreadCount: 23
UnstartedThread: 0
BackgroundThread: 17
PendingThread: 0
DeadThread: 5
Hosted Runtime: no
Lock
ID OSID ThreadOBJ State GC Mode GC Alloc Context Domain Count Apt Exception
1 1 6a08 0000000001633FF0 20020 Preemptive (nil):(nil) 0000000001617250 0 Ukn
7 2 6a0e 000000000163FC50 21220 Preemptive (nil):(nil) 0000000001617250 0 Ukn (Finalizer)
8 3 6a0f 00000000017757D0 21220 Preemptive (nil):(nil) 0000000001617250 0 Ukn
11 6 6a13 00007F93BC001290 1021220 Preemptive (nil):(nil) 0000000001617250 0 Ukn (Threadpool Worker)
13 8 6a15 00007F93B80009D0 1020220 Preemptive (nil):(nil) 0000000001617250 0 Ukn (Threadpool Worker)
14 9 6a16 0000000001C72CE0 21220 Preemptive (nil):(nil) 0000000001617250 0 Ukn
15 10 6a17 0000000001C74D20 21220 Preemptive (nil):(nil) 0000000001617250 0 Ukn
16 11 6a18 0000000001C86380 21220 Preemptive (nil):(nil) 0000000001617250 0 Ukn
17 12 6a19 0000000001C86FF0 21220 Preemptive (nil):(nil) 0000000001617250 0 Ukn
18 13 6a1a 0000000001F9DD30 21220 Preemptive (nil):(nil) 0000000001617250 0 Ukn
21 15 6a1f 00007F93A0001240 1021220 Preemptive 0x7f93d71891a0:0x7f93d71891d0 0000000001617250 2 Ukn (Threadpool Worker)
23 17 6a50 00007F93C007A6F0 1021220 Preemptive (nil):(nil) 0000000001617250 0 Ukn (Threadpool Worker)
24 18 6a51 00007F9394004C30 1021220 Preemptive (nil):(nil) 0000000001617250 0 Ukn (Threadpool Worker)
25 19 6a52 00007F9398001220 1021220 Preemptive (nil):(nil) 0000000001617250 0 Ukn (Threadpool Worker)
26 20 6a53 00007F93940DBF00 1021220 Preemptive (nil):(nil) 0000000001617250 0 Ukn (Threadpool Worker)
27 21 6a54 00007F93941D5880 1021220 Preemptive (nil):(nil) 0000000001617250 0 Ukn (Threadpool Worker)
XXXX 22 0 00007F93BC003EA0 1031820 Preemptive (nil):(nil) 0000000001617250 0 Ukn (Threadpool Worker)
XXXX 14 0 00007F93A005D0C0 1031820 Preemptive (nil):(nil) 0000000001617250 0 Ukn (Threadpool Worker)
XXXX 7 0 00007F9394001B00 1031820 Preemptive (nil):(nil) 0000000001617250 0 Ukn (Threadpool Worker)
33 5 6b58 00007F93C0072B20 1021220 Preemptive (nil):(nil) 0000000001617250 0 Ukn (Threadpool Worker)
XXXX 4 0 00007F93B41ED790 1031820 Preemptive (nil):(nil) 0000000001617250 0 Ukn (Threadpool Worker)
XXXX 23 0 00007F938C002240 1031820 Preemptive (nil):(nil) 0000000001617250 0 Ukn (Threadpool Worker)
36 16 6b66 00007F9394176AC0 21220 Preemptive (nil):(nil) 0000000001617250 0 Ukn (GC)
(lldb) sos DumpStack
OS Thread Id: 0x6b66 (36)
TEB information is not available so a stack size of 0xFFFF is assumed
Current frame: libcoreclr.so!TableFreeSingleHandleToCache(HandleTable*, unsigned int, OBJECTHANDLE__*) + 0x66
Child-SP RetAddr Caller, Callee
00007F93D3FFCCA0 00007f947544f3a8 libcoreclr.so!WKS::CFinalize::ScanForFinalization(void (*)(Object**, ScanContext*, unsigned int), int, int, WKS::gc_heap*) + 0x1a8, calling libcoreclr.so!FinalizeWeakReference(Object*)
00007F93D3FFCD30 00007f947543fcff libcoreclr.so!WKS::gc_heap::background_mark_phase() + 0x77f, calling libcoreclr.so!WKS::CFinalize::ScanForFinalization(void (*)(Object**, ScanContext*, unsigned int), int, int, WKS::gc_heap*)
00007F93D3FFCDA0 00007f9475583cc7 libcoreclr.so!QueryPerformanceCounter + 0x27, calling libcoreclr.so + 0xffffffff
00007F93D3FFCDF0 00007f947543e983 libcoreclr.so!WKS::gc_heap::gc1() + 0x213, calling libcoreclr.so!WKS::gc_heap::background_mark_phase()
00007F93D3FFCE20 00007f9475593789 libcoreclr.so!ResetEvent + 0xb9
00007F93D3FFCE60 00007f9475455bc5 libcoreclr.so!WKS::gc_heap::bgc_thread_function() + 0x165, calling libcoreclr.so!WKS::gc_heap::gc1()
00007F93D3FFCEA0 00007f9475455a59 libcoreclr.so!WKS::gc_heap::bgc_thread_stub(void*) + 0x9, calling libcoreclr.so!WKS::gc_heap::bgc_thread_function()
00007F93D3FFCEB0 00007f947525ed70 libcoreclr.so!BackgroundThreadStub(void*) + 0xd0
00007F93D3FFCEF0 00007f94755a2d59 libcoreclr.so!CorUnix::CPalThread::ThreadEntry(void*) + 0x129
00007F93D3FFCFB0 00007f94762c77cd libc.so.6!clone + 0x6d
```
This is on a self-compiled version of the CoreCLR using LLVM 3.8.1 running on Linux x64. The issue was also present using LLVM 3.7.1. If it matters in any way, I do use WeakReferences in the managed code.
```
cat .version
c7e321e6ef7272cebfbfebe37fbb47cb023a6270
1.1.2
```
|
True
|
GC FinalizeWeakReference issue - ```
(lldb) thread list
Process 27144 stopped
thread #1: tid = 27144, 0x00007f9476bd455d libpthread.so.0`__libc_read + 45, name = 'App'
thread #2: tid = 27145, 0x00007f94762c31d9 libc.so.6`syscall + 25, name = 'App'
thread #3: tid = 27146, 0x00007f94762c31d9 libc.so.6`syscall + 25, name = 'App'
thread #4: tid = 27147, 0x00007f94762be32d libc.so.6`__poll + 45, name = 'App'
thread #5: tid = 27148, 0x00007f9476bd4c7d libpthread.so.0`__GI_open64 + 45, name = 'App'
thread #6: tid = 27149, 0x00007f9476bd130f libpthread.so.0`__pthread_cond_wait + 191, name = 'App'
thread #7: tid = 27150, 0x00007f9476bd16b8 libpthread.so.0`__pthread_cond_timedwait + 296, name = 'App'
thread #8: tid = 27151, 0x00007f9476bd455d libpthread.so.0`__libc_read + 45, name = 'App'
thread #11: tid = 27155, 0x00007f9476bd16b8 libpthread.so.0`__pthread_cond_timedwait + 296, name = 'App'
thread #13: tid = 27157, 0x00007f9476bd16b8 libpthread.so.0`__pthread_cond_timedwait + 296, name = 'App'
thread #14: tid = 27158, 0x00007f94762c31d9 libc.so.6`syscall + 25, name = 'App'
thread #15: tid = 27159, 0x00007f94762c31d9 libc.so.6`syscall + 25, name = 'App'
thread #16: tid = 27160, 0x00007f94762c31d9 libc.so.6`syscall + 25, name = 'App'
thread #17: tid = 27161, 0x00007f94762c31d9 libc.so.6`syscall + 25, name = 'App'
thread #18: tid = 27162, 0x00007f94762c7df3 libc.so.6`epoll_wait + 51, name = 'App'
thread #19: tid = 27163, 0x00007f9476bd16b8 libpthread.so.0`__pthread_cond_timedwait + 296, name = 'App'
thread #21: tid = 27167, 0x00007f9476bd130f libpthread.so.0`__pthread_cond_wait + 191, name = 'App'
thread #23: tid = 27216, 0x00007f9476bd16b8 libpthread.so.0`__pthread_cond_timedwait + 296, name = 'App'
thread #24: tid = 27217, 0x00007f9476bd16b8 libpthread.so.0`__pthread_cond_timedwait + 296, name = 'App'
thread #25: tid = 27218, 0x00007f9476bd16b8 libpthread.so.0`__pthread_cond_timedwait + 296, name = 'App'
thread #26: tid = 27219, 0x00007f9476bd16b8 libpthread.so.0`__pthread_cond_timedwait + 296, name = 'App'
thread #27: tid = 27220, 0x00007f9476bd16b8 libpthread.so.0`__pthread_cond_timedwait + 296, name = 'App'
thread #33: tid = 27480, 0x00007f9476bd16b8 libpthread.so.0`__pthread_cond_timedwait + 296, name = 'App'
* thread #36: tid = 27494, 0x00007f94753f5396 libcoreclr.so`TableFreeSingleHandleToCache(HandleTable*, unsigned int, OBJECTHANDLE__*) + 102, name = 'App', stop reason = signal SIGSEGV: invalid address (fault address: 0x2ecae4b60)
(lldb) sos Threads
ThreadCount: 23
UnstartedThread: 0
BackgroundThread: 17
PendingThread: 0
DeadThread: 5
Hosted Runtime: no
Lock
ID OSID ThreadOBJ State GC Mode GC Alloc Context Domain Count Apt Exception
1 1 6a08 0000000001633FF0 20020 Preemptive (nil):(nil) 0000000001617250 0 Ukn
7 2 6a0e 000000000163FC50 21220 Preemptive (nil):(nil) 0000000001617250 0 Ukn (Finalizer)
8 3 6a0f 00000000017757D0 21220 Preemptive (nil):(nil) 0000000001617250 0 Ukn
11 6 6a13 00007F93BC001290 1021220 Preemptive (nil):(nil) 0000000001617250 0 Ukn (Threadpool Worker)
13 8 6a15 00007F93B80009D0 1020220 Preemptive (nil):(nil) 0000000001617250 0 Ukn (Threadpool Worker)
14 9 6a16 0000000001C72CE0 21220 Preemptive (nil):(nil) 0000000001617250 0 Ukn
15 10 6a17 0000000001C74D20 21220 Preemptive (nil):(nil) 0000000001617250 0 Ukn
16 11 6a18 0000000001C86380 21220 Preemptive (nil):(nil) 0000000001617250 0 Ukn
17 12 6a19 0000000001C86FF0 21220 Preemptive (nil):(nil) 0000000001617250 0 Ukn
18 13 6a1a 0000000001F9DD30 21220 Preemptive (nil):(nil) 0000000001617250 0 Ukn
21 15 6a1f 00007F93A0001240 1021220 Preemptive 0x7f93d71891a0:0x7f93d71891d0 0000000001617250 2 Ukn (Threadpool Worker)
23 17 6a50 00007F93C007A6F0 1021220 Preemptive (nil):(nil) 0000000001617250 0 Ukn (Threadpool Worker)
24 18 6a51 00007F9394004C30 1021220 Preemptive (nil):(nil) 0000000001617250 0 Ukn (Threadpool Worker)
25 19 6a52 00007F9398001220 1021220 Preemptive (nil):(nil) 0000000001617250 0 Ukn (Threadpool Worker)
26 20 6a53 00007F93940DBF00 1021220 Preemptive (nil):(nil) 0000000001617250 0 Ukn (Threadpool Worker)
27 21 6a54 00007F93941D5880 1021220 Preemptive (nil):(nil) 0000000001617250 0 Ukn (Threadpool Worker)
XXXX 22 0 00007F93BC003EA0 1031820 Preemptive (nil):(nil) 0000000001617250 0 Ukn (Threadpool Worker)
XXXX 14 0 00007F93A005D0C0 1031820 Preemptive (nil):(nil) 0000000001617250 0 Ukn (Threadpool Worker)
XXXX 7 0 00007F9394001B00 1031820 Preemptive (nil):(nil) 0000000001617250 0 Ukn (Threadpool Worker)
33 5 6b58 00007F93C0072B20 1021220 Preemptive (nil):(nil) 0000000001617250 0 Ukn (Threadpool Worker)
XXXX 4 0 00007F93B41ED790 1031820 Preemptive (nil):(nil) 0000000001617250 0 Ukn (Threadpool Worker)
XXXX 23 0 00007F938C002240 1031820 Preemptive (nil):(nil) 0000000001617250 0 Ukn (Threadpool Worker)
36 16 6b66 00007F9394176AC0 21220 Preemptive (nil):(nil) 0000000001617250 0 Ukn (GC)
(lldb) sos DumpStack
OS Thread Id: 0x6b66 (36)
TEB information is not available so a stack size of 0xFFFF is assumed
Current frame: libcoreclr.so!TableFreeSingleHandleToCache(HandleTable*, unsigned int, OBJECTHANDLE__*) + 0x66
Child-SP RetAddr Caller, Callee
00007F93D3FFCCA0 00007f947544f3a8 libcoreclr.so!WKS::CFinalize::ScanForFinalization(void (*)(Object**, ScanContext*, unsigned int), int, int, WKS::gc_heap*) + 0x1a8, calling libcoreclr.so!FinalizeWeakReference(Object*)
00007F93D3FFCD30 00007f947543fcff libcoreclr.so!WKS::gc_heap::background_mark_phase() + 0x77f, calling libcoreclr.so!WKS::CFinalize::ScanForFinalization(void (*)(Object**, ScanContext*, unsigned int), int, int, WKS::gc_heap*)
00007F93D3FFCDA0 00007f9475583cc7 libcoreclr.so!QueryPerformanceCounter + 0x27, calling libcoreclr.so + 0xffffffff
00007F93D3FFCDF0 00007f947543e983 libcoreclr.so!WKS::gc_heap::gc1() + 0x213, calling libcoreclr.so!WKS::gc_heap::background_mark_phase()
00007F93D3FFCE20 00007f9475593789 libcoreclr.so!ResetEvent + 0xb9
00007F93D3FFCE60 00007f9475455bc5 libcoreclr.so!WKS::gc_heap::bgc_thread_function() + 0x165, calling libcoreclr.so!WKS::gc_heap::gc1()
00007F93D3FFCEA0 00007f9475455a59 libcoreclr.so!WKS::gc_heap::bgc_thread_stub(void*) + 0x9, calling libcoreclr.so!WKS::gc_heap::bgc_thread_function()
00007F93D3FFCEB0 00007f947525ed70 libcoreclr.so!BackgroundThreadStub(void*) + 0xd0
00007F93D3FFCEF0 00007f94755a2d59 libcoreclr.so!CorUnix::CPalThread::ThreadEntry(void*) + 0x129
00007F93D3FFCFB0 00007f94762c77cd libc.so.6!clone + 0x6d
```
This is on a self-compiled version of the CoreCLR using LLVM 3.8.1 running on Linux x64. The issue was also present using LLVM 3.7.1. If it matters in any way, I do use WeakReferences in the managed code.
```
cat .version
c7e321e6ef7272cebfbfebe37fbb47cb023a6270
1.1.2
```
|
reli
|
gc finalizeweakreference issue lldb thread list process stopped thread tid libpthread so libc read name app thread tid libc so syscall name app thread tid libc so syscall name app thread tid libc so poll name app thread tid libpthread so gi name app thread tid libpthread so pthread cond wait name app thread tid libpthread so pthread cond timedwait name app thread tid libpthread so libc read name app thread tid libpthread so pthread cond timedwait name app thread tid libpthread so pthread cond timedwait name app thread tid libc so syscall name app thread tid libc so syscall name app thread tid libc so syscall name app thread tid libc so syscall name app thread tid libc so epoll wait name app thread tid libpthread so pthread cond timedwait name app thread tid libpthread so pthread cond wait name app thread tid libpthread so pthread cond timedwait name app thread tid libpthread so pthread cond timedwait name app thread tid libpthread so pthread cond timedwait name app thread tid libpthread so pthread cond timedwait name app thread tid libpthread so pthread cond timedwait name app thread tid libpthread so pthread cond timedwait name app thread tid libcoreclr so tablefreesinglehandletocache handletable unsigned int objecthandle name app stop reason signal sigsegv invalid address fault address lldb sos threads threadcount unstartedthread backgroundthread pendingthread deadthread hosted runtime no lock id osid threadobj state gc mode gc alloc context domain count apt exception preemptive nil nil ukn preemptive nil nil ukn finalizer preemptive nil nil ukn preemptive nil nil ukn threadpool worker preemptive nil nil ukn threadpool worker preemptive nil nil ukn preemptive nil nil ukn preemptive nil nil ukn preemptive nil nil ukn preemptive nil nil ukn preemptive ukn threadpool worker preemptive nil nil ukn threadpool worker preemptive nil nil ukn threadpool worker preemptive nil nil ukn threadpool worker preemptive nil nil ukn threadpool worker preemptive nil nil ukn threadpool worker xxxx preemptive nil nil ukn threadpool worker xxxx preemptive nil nil ukn threadpool worker xxxx preemptive nil nil ukn threadpool worker preemptive nil nil ukn threadpool worker xxxx preemptive nil nil ukn threadpool worker xxxx preemptive nil nil ukn threadpool worker preemptive nil nil ukn gc lldb sos dumpstack os thread id teb information is not available so a stack size of is assumed current frame libcoreclr so tablefreesinglehandletocache handletable unsigned int objecthandle child sp retaddr caller callee libcoreclr so wks cfinalize scanforfinalization void object scancontext unsigned int int int wks gc heap calling libcoreclr so finalizeweakreference object libcoreclr so wks gc heap background mark phase calling libcoreclr so wks cfinalize scanforfinalization void object scancontext unsigned int int int wks gc heap libcoreclr so queryperformancecounter calling libcoreclr so libcoreclr so wks gc heap calling libcoreclr so wks gc heap background mark phase libcoreclr so resetevent libcoreclr so wks gc heap bgc thread function calling libcoreclr so wks gc heap libcoreclr so wks gc heap bgc thread stub void calling libcoreclr so wks gc heap bgc thread function libcoreclr so backgroundthreadstub void libcoreclr so corunix cpalthread threadentry void libc so clone this is on a self compiled version of the coreclr using llvm running on linux the issue was also present using llvm if it matters in any way i do use weakreferences in the managed code cat version
| 1
|
7,223
| 2,842,359,653
|
IssuesEvent
|
2015-05-28 08:52:03
|
LinDA-tools/LindaWorkbench
|
https://api.github.com/repos/LinDA-tools/LindaWorkbench
|
closed
|
Union of query results. Detection of same columns
|
LinDA Query Designer
|
Minor issue.
when i use the union pattern. the query designer does not detect the same column names. as a result i get a union with more columns that are empty depending on the datasource.
In order to fix it i have to change the names of the columns and give them a common name.
See as example the query #54 with description "bangkok_dangerous & youth without youth text mining PPS"
Thanks a lot!
|
1.0
|
Union of query results. Detection of same columns - Minor issue.
when i use the union pattern. the query designer does not detect the same column names. as a result i get a union with more columns that are empty depending on the datasource.
In order to fix it i have to change the names of the columns and give them a common name.
See as example the query #54 with description "bangkok_dangerous & youth without youth text mining PPS"
Thanks a lot!
|
non_reli
|
union of query results detection of same columns minor issue when i use the union pattern the query designer does not detect the same column names as a result i get a union with more columns that are empty depending on the datasource in order to fix it i have to change the names of the columns and give them a common name see as example the query with description bangkok dangerous amp youth without youth text mining pps thanks a lot
| 0
|
109
| 3,992,930,717
|
IssuesEvent
|
2016-05-10 05:33:21
|
dotnet/coreclr
|
https://api.github.com/repos/dotnet/coreclr
|
closed
|
SIGSEGV_System.Globalization.Native.so!GlobalizationNative_GetSortHandle
|
2 - In Progress bug mscorlib reliability
|
**The notes for this bug refer to the ubuntu1404 coredump of stress test [projectk-24025-00-amd64chk_0015](https://rapreqs.blob.core.windows.net/bryanar/BodyPart_554107c3-d70f-4ef3-8bd8-b184bce56207?sv=2015-04-05&sr=b&sig=k7wlR%2FK6ETEUkGx%2FJdToT3tjMdVeLHVoV2iZm%2BmFYwA%3D&st=2016-05-02T23%3A32%3A10Z&se=2017-05-02T23%3A32%3A10Z&sp=r)**
**This issue appears to be an interop issue where we end up invoking the wrong pinvoke stub, and eventually the wrong native method**
STOP_REASON:
SIGSEGV
FAULT_SYMBOL:
libicui18n.so.52!ucol_open_internal_52
FAILURE_HASH:
SIGSEGV_libicui18n.so.52!ucol_open_internal_52
FAULT_STACK:
libc.so.6!__GI_strchr
libicuuc.so.52!???
libicuuc.so.52!ures_open_52
libicui18n.so.52!ucol_open_internal_52
System.Globalization.Native.so!GlobalizationNative_GetSortHandle
mscorlib.ni.dll!DomainNeutralILStubClass.IL_STUB_PInvoke(Byte[])
mscorlib.ni.dll!System.Globalization.CompareInfo..ctor(System.Globalization.CultureInfo)
mscorlib.ni.dll!System.Globalization.CultureInfo.get_CompareInfo()
CultureInfoCompareInfo.dll!System.Globalization.Tests.CultureInfoCompareInfo.TestCompareInfoNameWithInvariant()
projectk-24025-00-amd64chk_0015.exe!stress.generated.UnitTests.UT11()
stress.execution.dll!stress.execution.UnitTest.Execute()
stress.execution.dll!stress.execution.DedicatedThreadWorkerStrategy.RunWorker(stress.execution.ITestPattern, System.Threading.CancellationToken)
...
FAULT_THREAD:
thread #1: tid = 34687, 0x00007fc8a9e0ef1c libc.so.6`__GI_strchr + 204 at strchr.S:87, name = 'corerun', stop reason = signal SIGSEGV
**Looking at the code for System.Globalization.CompareInfo..ctor(System.Globalization.CultureInfo) it looks like we actually are trying to pinvoke to IntPtr NativeInternalInitSortHandle(String localeName, out IntPtr handleOrigin)**
[CompareInfo.cs line 116](https://github.com/dotnet/coreclr/blob/master/src/mscorlib/src/System/Globalization/CompareInfo.cs#L116)
internal CompareInfo(CultureInfo culture)
{
this.m_name = culture.m_name;
this.m_sortName = culture.SortName;
IntPtr handleOrigin;
this.m_dataHandle = InternalInitSortHandle(m_sortName, out handleOrigin);
this.m_handleOrigin = handleOrigin;
}
[CompareInfo.cs line 1276](https://github.com/dotnet/coreclr/blob/master/src/mscorlib/src/System/Globalization/CompareInfo.cs#L1276)
[System.Security.SecuritySafeCritical]
internal static IntPtr InternalInitSortHandle(String localeName, out IntPtr handleOrigin)
{
return NativeInternalInitSortHandle(localeName, out handleOrigin);
}
[CompareInfo.cs line 1335](https://github.com/dotnet/coreclr/blob/master/src/mscorlib/src/System/Globalization/CompareInfo.cs#L1335)
[System.Security.SecurityCritical]
[DllImport(JitHelpers.QCall, CharSet = CharSet.Unicode)]
[SuppressUnmanagedCodeSecurity]
private static extern IntPtr NativeInternalInitSortHandle(String localeName, out IntPtr handleOrigin);
**So we should be calling into the QCall NativeInternalInitSortHandle which maps to COMNlsInfo::InternalInitSortHandle**
[ecalllist.h line 1455](https://github.com/dotnet/coreclr/blob/master/src/vm/ecalllist.h#L1455)
QCFuncElement("NativeInternalInitSortHandle", COMNlsInfo::InternalInitSortHandle)
**However instead we call into a pinvoke stub (through a jump stub) which doesn't match the QCall signature DomainNeutralILStubClass.IL_STUB_PInvoke(Byte[]), and this calls into System.Globalization.Native.so!GlobalizationNative_GetSortHandle which results in a SEGSIV in OS code**
System.Globalization.CompareInfo..ctor(System.Globalization.CultureInfo)
Begin 00007FC82F755F20, size ad
00007fc82f755f20 55 push rbp
00007fc82f755f21 4156 push r14
00007fc82f755f23 53 push rbx
00007fc82f755f24 488d6c2410 lea rbp, [rsp + 0x10]
00007fc82f755f29 488bdf mov rbx, rdi
00007fc82f755f2c 4c8bf6 mov r14, rsi
00007fc82f755f2f 498b7638 mov rsi, qword ptr [r14 + 0x38]
00007fc82f755f33 488d7b08 lea rdi, [rbx + 0x8]
00007fc82f755f37 e80c31d4ff call 0x7fc82f499048
00007fc82f755f3c 49837e4800 cmp qword ptr [r14 + 0x48], 0x0
00007fc82f755f41 7517 jne 0x7fc82f755f5a
00007fc82f755f43 498b7e30 mov rdi, qword ptr [r14 + 0x30]
00007fc82f755f47 393f cmp dword ptr [rdi], edi
00007fc82f755f49 e8aabed5ff call 0x7fc82f4b1df8 (System.Globalization.CultureData.get_SCOMPAREINFO(), mdToken: 0000000006002E2A)
00007fc82f755f4e 498d7e48 lea rdi, [r14 + 0x48]
00007fc82f755f52 488bf0 mov rsi, rax
00007fc82f755f55 e8ee30d4ff call 0x7fc82f499048
00007fc82f755f5a 498b7648 mov rsi, qword ptr [r14 + 0x48]
00007fc82f755f5e 488d7b10 lea rdi, [rbx + 0x10]
00007fc82f755f62 e8e130d4ff call 0x7fc82f499048
00007fc82f755f67 e894230400 call 0x7fc82f798300 (System.Text.Encoding.get_UTF8(), mdToken: 0000000006001E8B)
00007fc82f755f6c 488bf8 mov rdi, rax
00007fc82f755f6f 488b7310 mov rsi, qword ptr [rbx + 0x10]
00007fc82f755f73 488b00 mov rax, qword ptr [rax]
00007fc82f755f76 488b4058 mov rax, qword ptr [rax + 0x58]
00007fc82f755f7a ff5010 call qword ptr [rax + 0x10]
00007fc82f755f7d 488bf8 mov rdi, rax
00007fc82f755f80 e8a36bd5ff call 0x7fc82f4acb28 (Interop+GlobalizationInterop.GetSortHandle(Byte[]), mdToken: 00000000060037D8)
>>> 00007fc82f755f85 488d7b18 lea rdi, [rbx + 0x18]
(lldb) clru 0x7fc82f4acb28
Unmanaged code
00007fc82f4acb28 49baa89efd2ec87f0000 movabs r10, 0x7fc82efd9ea8
00007fc82f4acb32 40e9c8452800 jmp 0x7fc82f731100
DomainNeutralILStubClass.IL_STUB_PInvoke(Byte[])
Begin 00007FC82F731100, size e2
...
00007fc82f731178 488b7db8 mov rdi, qword ptr [rbp - 0x48]
00007fc82f73117c 488b7f48 mov rdi, qword ptr [rdi + 0x48]
00007fc82f731180 488b07 mov rax, qword ptr [rdi]
00007fc82f731183 498bff mov rdi, r15
00007fc82f731186 4533db xor r11d, r11d
00007fc82f731189 488b75b8 mov rsi, qword ptr [rbp - 0x48]
00007fc82f73118d 48897590 mov qword ptr [rbp - 0x70], rsi
00007fc82f731191 488d350b000000 lea rsi, [rip + 0xb]
00007fc82f731198 488975a8 mov qword ptr [rbp - 0x58], rsi
00007fc82f73119c 41c6460c00 mov byte ptr [r14 + 0xc], 0x0
00007fc82f7311a1 ffd0 call rax
>>> 00007fc82f7311a3 41c6460c01 mov byte ptr [r14 + 0xc], 0x1
**We can dig out the value of rax to show that we indeed called directly to System.Globalization.Native.so!GlobalizationNative_GetSortHandle**
00007fc82f731178 488b7db8 mov rdi, qword ptr [rbp - 0x48] //rdi = *(rbp-48)
00007fc82f73117c 488b7f48 mov rdi, qword ptr [rdi + 0x48] //rdi = *(*(rbp-48)+48)
00007fc82f731180 488b07 mov rax, qword ptr [rdi] //rax = *rdi = *(*(*(rbp-48)+48))
00007fc82f731183 498bff mov rdi, r15
00007fc82f731186 4533db xor r11d, r11d
00007fc82f731189 488b75b8 mov rsi, qword ptr [rbp - 0x48]
00007fc82f73118d 48897590 mov qword ptr [rbp - 0x70], rsi
00007fc82f731191 488d350b000000 lea rsi, [rip + 0xb]
00007fc82f731198 488975a8 mov qword ptr [rbp - 0x58], rsi
00007fc82f73119c 41c6460c00 mov byte ptr [r14 + 0xc], 0x0
00007fc82f7311a1 ffd0 call rax
General Purpose Registers:
rbx = 0x00007fc810188658
rbp = 0x00007fc82d5b2dc0
rsp = 0x00007fc82d5b2d30
r12 = 0x00007fc8100b7cc8
r13 = 0x00007fc8101885a8
r14 = 0x0000000000f02290
r15 = 0x00007fc810188668
rip = 0x00007fc82f7311a3
(lldb) mem read --size 8 --format x --count 1 0x00007fc82d5b2dc0-0x48 //*(rbp-48)
0x7fc82d5b2d78: 0x00007fc82efd9ea8
(lldb) mem read --size 8 --format x --count 1 0x00007fc82efd9ea8+0x48 //*(*(rbp-48)+48)
0x7fc82efd9ef0: 0x00007fc82f183d88
(lldb) mem read --size 8 --format x --count 1 0x00007fc82f183d88 //*(*(*(rbp-48)+48))
0x7fc82f183d88: 0x00007fc8a51b2bf0
(lldb) disassemble -s 0x00007fc8a51b2bf0
System.Globalization.Native.so`::GlobalizationNative_GetSortHandle(const char *):
|
True
|
SIGSEGV_System.Globalization.Native.so!GlobalizationNative_GetSortHandle - **The notes for this bug refer to the ubuntu1404 coredump of stress test [projectk-24025-00-amd64chk_0015](https://rapreqs.blob.core.windows.net/bryanar/BodyPart_554107c3-d70f-4ef3-8bd8-b184bce56207?sv=2015-04-05&sr=b&sig=k7wlR%2FK6ETEUkGx%2FJdToT3tjMdVeLHVoV2iZm%2BmFYwA%3D&st=2016-05-02T23%3A32%3A10Z&se=2017-05-02T23%3A32%3A10Z&sp=r)**
**This issue appears to be an interop issue where we end up invoking the wrong pinvoke stub, and eventually the wrong native method**
STOP_REASON:
SIGSEGV
FAULT_SYMBOL:
libicui18n.so.52!ucol_open_internal_52
FAILURE_HASH:
SIGSEGV_libicui18n.so.52!ucol_open_internal_52
FAULT_STACK:
libc.so.6!__GI_strchr
libicuuc.so.52!???
libicuuc.so.52!ures_open_52
libicui18n.so.52!ucol_open_internal_52
System.Globalization.Native.so!GlobalizationNative_GetSortHandle
mscorlib.ni.dll!DomainNeutralILStubClass.IL_STUB_PInvoke(Byte[])
mscorlib.ni.dll!System.Globalization.CompareInfo..ctor(System.Globalization.CultureInfo)
mscorlib.ni.dll!System.Globalization.CultureInfo.get_CompareInfo()
CultureInfoCompareInfo.dll!System.Globalization.Tests.CultureInfoCompareInfo.TestCompareInfoNameWithInvariant()
projectk-24025-00-amd64chk_0015.exe!stress.generated.UnitTests.UT11()
stress.execution.dll!stress.execution.UnitTest.Execute()
stress.execution.dll!stress.execution.DedicatedThreadWorkerStrategy.RunWorker(stress.execution.ITestPattern, System.Threading.CancellationToken)
...
FAULT_THREAD:
thread #1: tid = 34687, 0x00007fc8a9e0ef1c libc.so.6`__GI_strchr + 204 at strchr.S:87, name = 'corerun', stop reason = signal SIGSEGV
**Looking at the code for System.Globalization.CompareInfo..ctor(System.Globalization.CultureInfo) it looks like we actually are trying to pinvoke to IntPtr NativeInternalInitSortHandle(String localeName, out IntPtr handleOrigin)**
[CompareInfo.cs line 116](https://github.com/dotnet/coreclr/blob/master/src/mscorlib/src/System/Globalization/CompareInfo.cs#L116)
internal CompareInfo(CultureInfo culture)
{
this.m_name = culture.m_name;
this.m_sortName = culture.SortName;
IntPtr handleOrigin;
this.m_dataHandle = InternalInitSortHandle(m_sortName, out handleOrigin);
this.m_handleOrigin = handleOrigin;
}
[CompareInfo.cs line 1276](https://github.com/dotnet/coreclr/blob/master/src/mscorlib/src/System/Globalization/CompareInfo.cs#L1276)
[System.Security.SecuritySafeCritical]
internal static IntPtr InternalInitSortHandle(String localeName, out IntPtr handleOrigin)
{
return NativeInternalInitSortHandle(localeName, out handleOrigin);
}
[CompareInfo.cs line 1335](https://github.com/dotnet/coreclr/blob/master/src/mscorlib/src/System/Globalization/CompareInfo.cs#L1335)
[System.Security.SecurityCritical]
[DllImport(JitHelpers.QCall, CharSet = CharSet.Unicode)]
[SuppressUnmanagedCodeSecurity]
private static extern IntPtr NativeInternalInitSortHandle(String localeName, out IntPtr handleOrigin);
**So we should be calling into the QCall NativeInternalInitSortHandle which maps to COMNlsInfo::InternalInitSortHandle**
[ecalllist.h line 1455](https://github.com/dotnet/coreclr/blob/master/src/vm/ecalllist.h#L1455)
QCFuncElement("NativeInternalInitSortHandle", COMNlsInfo::InternalInitSortHandle)
**However instead we call into a pinvoke stub (through a jump stub) which doesn't match the QCall signature DomainNeutralILStubClass.IL_STUB_PInvoke(Byte[]), and this calls into System.Globalization.Native.so!GlobalizationNative_GetSortHandle which results in a SEGSIV in OS code**
System.Globalization.CompareInfo..ctor(System.Globalization.CultureInfo)
Begin 00007FC82F755F20, size ad
00007fc82f755f20 55 push rbp
00007fc82f755f21 4156 push r14
00007fc82f755f23 53 push rbx
00007fc82f755f24 488d6c2410 lea rbp, [rsp + 0x10]
00007fc82f755f29 488bdf mov rbx, rdi
00007fc82f755f2c 4c8bf6 mov r14, rsi
00007fc82f755f2f 498b7638 mov rsi, qword ptr [r14 + 0x38]
00007fc82f755f33 488d7b08 lea rdi, [rbx + 0x8]
00007fc82f755f37 e80c31d4ff call 0x7fc82f499048
00007fc82f755f3c 49837e4800 cmp qword ptr [r14 + 0x48], 0x0
00007fc82f755f41 7517 jne 0x7fc82f755f5a
00007fc82f755f43 498b7e30 mov rdi, qword ptr [r14 + 0x30]
00007fc82f755f47 393f cmp dword ptr [rdi], edi
00007fc82f755f49 e8aabed5ff call 0x7fc82f4b1df8 (System.Globalization.CultureData.get_SCOMPAREINFO(), mdToken: 0000000006002E2A)
00007fc82f755f4e 498d7e48 lea rdi, [r14 + 0x48]
00007fc82f755f52 488bf0 mov rsi, rax
00007fc82f755f55 e8ee30d4ff call 0x7fc82f499048
00007fc82f755f5a 498b7648 mov rsi, qword ptr [r14 + 0x48]
00007fc82f755f5e 488d7b10 lea rdi, [rbx + 0x10]
00007fc82f755f62 e8e130d4ff call 0x7fc82f499048
00007fc82f755f67 e894230400 call 0x7fc82f798300 (System.Text.Encoding.get_UTF8(), mdToken: 0000000006001E8B)
00007fc82f755f6c 488bf8 mov rdi, rax
00007fc82f755f6f 488b7310 mov rsi, qword ptr [rbx + 0x10]
00007fc82f755f73 488b00 mov rax, qword ptr [rax]
00007fc82f755f76 488b4058 mov rax, qword ptr [rax + 0x58]
00007fc82f755f7a ff5010 call qword ptr [rax + 0x10]
00007fc82f755f7d 488bf8 mov rdi, rax
00007fc82f755f80 e8a36bd5ff call 0x7fc82f4acb28 (Interop+GlobalizationInterop.GetSortHandle(Byte[]), mdToken: 00000000060037D8)
>>> 00007fc82f755f85 488d7b18 lea rdi, [rbx + 0x18]
(lldb) clru 0x7fc82f4acb28
Unmanaged code
00007fc82f4acb28 49baa89efd2ec87f0000 movabs r10, 0x7fc82efd9ea8
00007fc82f4acb32 40e9c8452800 jmp 0x7fc82f731100
DomainNeutralILStubClass.IL_STUB_PInvoke(Byte[])
Begin 00007FC82F731100, size e2
...
00007fc82f731178 488b7db8 mov rdi, qword ptr [rbp - 0x48]
00007fc82f73117c 488b7f48 mov rdi, qword ptr [rdi + 0x48]
00007fc82f731180 488b07 mov rax, qword ptr [rdi]
00007fc82f731183 498bff mov rdi, r15
00007fc82f731186 4533db xor r11d, r11d
00007fc82f731189 488b75b8 mov rsi, qword ptr [rbp - 0x48]
00007fc82f73118d 48897590 mov qword ptr [rbp - 0x70], rsi
00007fc82f731191 488d350b000000 lea rsi, [rip + 0xb]
00007fc82f731198 488975a8 mov qword ptr [rbp - 0x58], rsi
00007fc82f73119c 41c6460c00 mov byte ptr [r14 + 0xc], 0x0
00007fc82f7311a1 ffd0 call rax
>>> 00007fc82f7311a3 41c6460c01 mov byte ptr [r14 + 0xc], 0x1
**We can dig out the value of rax to show that we indeed called directly to System.Globalization.Native.so!GlobalizationNative_GetSortHandle**
00007fc82f731178 488b7db8 mov rdi, qword ptr [rbp - 0x48] //rdi = *(rbp-48)
00007fc82f73117c 488b7f48 mov rdi, qword ptr [rdi + 0x48] //rdi = *(*(rbp-48)+48)
00007fc82f731180 488b07 mov rax, qword ptr [rdi] //rax = *rdi = *(*(*(rbp-48)+48))
00007fc82f731183 498bff mov rdi, r15
00007fc82f731186 4533db xor r11d, r11d
00007fc82f731189 488b75b8 mov rsi, qword ptr [rbp - 0x48]
00007fc82f73118d 48897590 mov qword ptr [rbp - 0x70], rsi
00007fc82f731191 488d350b000000 lea rsi, [rip + 0xb]
00007fc82f731198 488975a8 mov qword ptr [rbp - 0x58], rsi
00007fc82f73119c 41c6460c00 mov byte ptr [r14 + 0xc], 0x0
00007fc82f7311a1 ffd0 call rax
General Purpose Registers:
rbx = 0x00007fc810188658
rbp = 0x00007fc82d5b2dc0
rsp = 0x00007fc82d5b2d30
r12 = 0x00007fc8100b7cc8
r13 = 0x00007fc8101885a8
r14 = 0x0000000000f02290
r15 = 0x00007fc810188668
rip = 0x00007fc82f7311a3
(lldb) mem read --size 8 --format x --count 1 0x00007fc82d5b2dc0-0x48 //*(rbp-48)
0x7fc82d5b2d78: 0x00007fc82efd9ea8
(lldb) mem read --size 8 --format x --count 1 0x00007fc82efd9ea8+0x48 //*(*(rbp-48)+48)
0x7fc82efd9ef0: 0x00007fc82f183d88
(lldb) mem read --size 8 --format x --count 1 0x00007fc82f183d88 //*(*(*(rbp-48)+48))
0x7fc82f183d88: 0x00007fc8a51b2bf0
(lldb) disassemble -s 0x00007fc8a51b2bf0
System.Globalization.Native.so`::GlobalizationNative_GetSortHandle(const char *):
|
reli
|
sigsegv system globalization native so globalizationnative getsorthandle the notes for this bug refer to the coredump of stress test this issue appears to be an interop issue where we end up invoking the wrong pinvoke stub and eventually the wrong native method stop reason sigsegv fault symbol so ucol open internal failure hash sigsegv so ucol open internal fault stack libc so gi strchr libicuuc so libicuuc so ures open so ucol open internal system globalization native so globalizationnative getsorthandle mscorlib ni dll domainneutralilstubclass il stub pinvoke byte mscorlib ni dll system globalization compareinfo ctor system globalization cultureinfo mscorlib ni dll system globalization cultureinfo get compareinfo cultureinfocompareinfo dll system globalization tests cultureinfocompareinfo testcompareinfonamewithinvariant projectk exe stress generated unittests stress execution dll stress execution unittest execute stress execution dll stress execution dedicatedthreadworkerstrategy runworker stress execution itestpattern system threading cancellationtoken fault thread thread tid libc so gi strchr at strchr s name corerun stop reason signal sigsegv looking at the code for system globalization compareinfo ctor system globalization cultureinfo it looks like we actually are trying to pinvoke to intptr nativeinternalinitsorthandle string localename out intptr handleorigin internal compareinfo cultureinfo culture this m name culture m name this m sortname culture sortname intptr handleorigin this m datahandle internalinitsorthandle m sortname out handleorigin this m handleorigin handleorigin internal static intptr internalinitsorthandle string localename out intptr handleorigin return nativeinternalinitsorthandle localename out handleorigin private static extern intptr nativeinternalinitsorthandle string localename out intptr handleorigin so we should be calling into the qcall nativeinternalinitsorthandle which maps to comnlsinfo internalinitsorthandle qcfuncelement nativeinternalinitsorthandle comnlsinfo internalinitsorthandle however instead we call into a pinvoke stub through a jump stub which doesn t match the qcall signature domainneutralilstubclass il stub pinvoke byte and this calls into system globalization native so globalizationnative getsorthandle which results in a segsiv in os code system globalization compareinfo ctor system globalization cultureinfo begin size ad push rbp push push rbx lea rbp mov rbx rdi mov rsi mov rsi qword ptr lea rdi call cmp qword ptr jne mov rdi qword ptr cmp dword ptr edi call system globalization culturedata get scompareinfo mdtoken lea rdi mov rsi rax call mov rsi qword ptr lea rdi call call system text encoding get mdtoken mov rdi rax mov rsi qword ptr mov rax qword ptr mov rax qword ptr call qword ptr mov rdi rax call interop globalizationinterop getsorthandle byte mdtoken lea rdi lldb clru unmanaged code movabs jmp domainneutralilstubclass il stub pinvoke byte begin size mov rdi qword ptr mov rdi qword ptr mov rax qword ptr mov rdi xor mov rsi qword ptr mov qword ptr rsi lea rsi mov qword ptr rsi mov byte ptr call rax mov byte ptr we can dig out the value of rax to show that we indeed called directly to system globalization native so globalizationnative getsorthandle mov rdi qword ptr rdi rbp mov rdi qword ptr rdi rbp mov rax qword ptr rax rdi rbp mov rdi xor mov rsi qword ptr mov qword ptr rsi lea rsi mov qword ptr rsi mov byte ptr call rax general purpose registers rbx rbp rsp rip lldb mem read size format x count rbp lldb mem read size format x count rbp lldb mem read size format x count rbp lldb disassemble s system globalization native so globalizationnative getsorthandle const char
| 1
|
3,042
| 31,816,933,034
|
IssuesEvent
|
2023-09-13 21:17:02
|
NVIDIA/spark-rapids
|
https://api.github.com/repos/NVIDIA/spark-rapids
|
closed
|
[BUG] Check that keys are not null when creating a map
|
bug reliability
|
I was able to create a map on the GPU with a null key:
```
scala> spark.sql("select map(x, -1) from (select explode(array(1,null)) as x)").show()
23/08/10 15:00:25 WARN GpuOverrides:
!Exec <CollectLimitExec> cannot run on GPU because the Exec CollectLimitExec has been disabled, and is disabled by default because Collect Limit replacement can be slower on the GPU, if huge number of rows in a batch it could help by limiting the number of rows transferred from GPU to CPU. Set spark.rapids.sql.exec.CollectLimitExec to true if you wish to enable it
@Partitioning <SinglePartition$> could run on GPU
*Exec <ProjectExec> will run on GPU
*Expression <Alias> cast(map(x#1, -1) as string) AS map(x, -1)#5 will run on GPU
*Expression <Cast> cast(map(x#1, -1) as string) will run on GPU
*Expression <CreateMap> map(x#1, -1) will run on GPU
*Exec <GenerateExec> will run on GPU
*Expression <Explode> explode([1,null]) will run on GPU
! <RDDScanExec> cannot run on GPU because GPU does not currently support the operator class org.apache.spark.sql.execution.RDDScanExec
+------------+
| map(x, -1)|
+------------+
| {1 -> -1}|
|{null -> -1}|
+------------+
```
That said, this is not allowed on the CPU, so we should prevent it from happening. If we allowed these maps with null keys who knows what else could break within spark in really odd ways.
CPU output example;
```
scala> spark.sql("select map(x, -1) from (select explode(array(1,null)) as x)").show()
23/08/10 15:00:41 WARN TaskSetManager: Lost task 0.0 in stage 1.0 (TID 1) (executor 0): java.lang.RuntimeException: Cannot use null as map key!
at org.apache.spark.sql.errors.QueryExecutionErrors$.nullAsMapKeyNotAllowedError(QueryExecutionErrors.scala:260)
at org.apache.spark.sql.catalyst.util.ArrayBasedMapBuilder.put(ArrayBasedMapBuilder.scala:56)
at org.apache.spark.sql.catalyst.util.ArrayBasedMapBuilder.putAll(ArrayBasedMapBuilder.scala:94)
at org.apache.spark.sql.catalyst.util.ArrayBasedMapBuilder.from(ArrayBasedMapBuilder.scala:122)
at org.apache.spark.sql.catalyst.expressions.GeneratedClass$GeneratedIteratorForCodegenStage1.generate_doConsume_0$(Unknown Source)
at org.apache.spark.sql.catalyst.expressions.GeneratedClass$GeneratedIteratorForCodegenStage1.processNext(Unknown Source)
at org.apache.spark.sql.execution.BufferedRowIterator.hasNext(BufferedRowIterator.java:43)
at org.apache.spark.sql.execution.WholeStageCodegenExec$$anon$1.hasNext(WholeStageCodegenExec.scala:759)
at org.apache.spark.sql.execution.SparkPlan.$anonfun$getByteArrayRdd$1(SparkPlan.scala:349)
at org.apache.spark.rdd.RDD.$anonfun$mapPartitionsInternal$2(RDD.scala:898)
at org.apache.spark.rdd.RDD.$anonfun$mapPartitionsInternal$2$adapted(RDD.scala:898)
at org.apache.spark.rdd.MapPartitionsRDD.compute(MapPartitionsRDD.scala:52)
at org.apache.spark.rdd.RDD.computeOrReadCheckpoint(RDD.scala:373)
at org.apache.spark.rdd.RDD.iterator(RDD.scala:337)
at org.apache.spark.scheduler.ResultTask.runTask(ResultTask.scala:90)
at org.apache.spark.scheduler.Task.run(Task.scala:131)
at org.apache.spark.executor.Executor$TaskRunner.$anonfun$run$3(Executor.scala:506)
at org.apache.spark.util.Utils$.tryWithSafeFinally(Utils.scala:1462)
at org.apache.spark.executor.Executor$TaskRunner.run(Executor.scala:509)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
at java.lang.Thread.run(Thread.java:750)
```
|
True
|
[BUG] Check that keys are not null when creating a map - I was able to create a map on the GPU with a null key:
```
scala> spark.sql("select map(x, -1) from (select explode(array(1,null)) as x)").show()
23/08/10 15:00:25 WARN GpuOverrides:
!Exec <CollectLimitExec> cannot run on GPU because the Exec CollectLimitExec has been disabled, and is disabled by default because Collect Limit replacement can be slower on the GPU, if huge number of rows in a batch it could help by limiting the number of rows transferred from GPU to CPU. Set spark.rapids.sql.exec.CollectLimitExec to true if you wish to enable it
@Partitioning <SinglePartition$> could run on GPU
*Exec <ProjectExec> will run on GPU
*Expression <Alias> cast(map(x#1, -1) as string) AS map(x, -1)#5 will run on GPU
*Expression <Cast> cast(map(x#1, -1) as string) will run on GPU
*Expression <CreateMap> map(x#1, -1) will run on GPU
*Exec <GenerateExec> will run on GPU
*Expression <Explode> explode([1,null]) will run on GPU
! <RDDScanExec> cannot run on GPU because GPU does not currently support the operator class org.apache.spark.sql.execution.RDDScanExec
+------------+
| map(x, -1)|
+------------+
| {1 -> -1}|
|{null -> -1}|
+------------+
```
That said, this is not allowed on the CPU, so we should prevent it from happening. If we allowed these maps with null keys who knows what else could break within spark in really odd ways.
CPU output example;
```
scala> spark.sql("select map(x, -1) from (select explode(array(1,null)) as x)").show()
23/08/10 15:00:41 WARN TaskSetManager: Lost task 0.0 in stage 1.0 (TID 1) (executor 0): java.lang.RuntimeException: Cannot use null as map key!
at org.apache.spark.sql.errors.QueryExecutionErrors$.nullAsMapKeyNotAllowedError(QueryExecutionErrors.scala:260)
at org.apache.spark.sql.catalyst.util.ArrayBasedMapBuilder.put(ArrayBasedMapBuilder.scala:56)
at org.apache.spark.sql.catalyst.util.ArrayBasedMapBuilder.putAll(ArrayBasedMapBuilder.scala:94)
at org.apache.spark.sql.catalyst.util.ArrayBasedMapBuilder.from(ArrayBasedMapBuilder.scala:122)
at org.apache.spark.sql.catalyst.expressions.GeneratedClass$GeneratedIteratorForCodegenStage1.generate_doConsume_0$(Unknown Source)
at org.apache.spark.sql.catalyst.expressions.GeneratedClass$GeneratedIteratorForCodegenStage1.processNext(Unknown Source)
at org.apache.spark.sql.execution.BufferedRowIterator.hasNext(BufferedRowIterator.java:43)
at org.apache.spark.sql.execution.WholeStageCodegenExec$$anon$1.hasNext(WholeStageCodegenExec.scala:759)
at org.apache.spark.sql.execution.SparkPlan.$anonfun$getByteArrayRdd$1(SparkPlan.scala:349)
at org.apache.spark.rdd.RDD.$anonfun$mapPartitionsInternal$2(RDD.scala:898)
at org.apache.spark.rdd.RDD.$anonfun$mapPartitionsInternal$2$adapted(RDD.scala:898)
at org.apache.spark.rdd.MapPartitionsRDD.compute(MapPartitionsRDD.scala:52)
at org.apache.spark.rdd.RDD.computeOrReadCheckpoint(RDD.scala:373)
at org.apache.spark.rdd.RDD.iterator(RDD.scala:337)
at org.apache.spark.scheduler.ResultTask.runTask(ResultTask.scala:90)
at org.apache.spark.scheduler.Task.run(Task.scala:131)
at org.apache.spark.executor.Executor$TaskRunner.$anonfun$run$3(Executor.scala:506)
at org.apache.spark.util.Utils$.tryWithSafeFinally(Utils.scala:1462)
at org.apache.spark.executor.Executor$TaskRunner.run(Executor.scala:509)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
at java.lang.Thread.run(Thread.java:750)
```
|
reli
|
check that keys are not null when creating a map i was able to create a map on the gpu with a null key scala spark sql select map x from select explode array null as x show warn gpuoverrides exec cannot run on gpu because the exec collectlimitexec has been disabled and is disabled by default because collect limit replacement can be slower on the gpu if huge number of rows in a batch it could help by limiting the number of rows transferred from gpu to cpu set spark rapids sql exec collectlimitexec to true if you wish to enable it partitioning could run on gpu exec will run on gpu expression cast map x as string as map x will run on gpu expression cast map x as string will run on gpu expression map x will run on gpu exec will run on gpu expression explode will run on gpu cannot run on gpu because gpu does not currently support the operator class org apache spark sql execution rddscanexec map x null that said this is not allowed on the cpu so we should prevent it from happening if we allowed these maps with null keys who knows what else could break within spark in really odd ways cpu output example scala spark sql select map x from select explode array null as x show warn tasksetmanager lost task in stage tid executor java lang runtimeexception cannot use null as map key at org apache spark sql errors queryexecutionerrors nullasmapkeynotallowederror queryexecutionerrors scala at org apache spark sql catalyst util arraybasedmapbuilder put arraybasedmapbuilder scala at org apache spark sql catalyst util arraybasedmapbuilder putall arraybasedmapbuilder scala at org apache spark sql catalyst util arraybasedmapbuilder from arraybasedmapbuilder scala at org apache spark sql catalyst expressions generatedclass generate doconsume unknown source at org apache spark sql catalyst expressions generatedclass processnext unknown source at org apache spark sql execution bufferedrowiterator hasnext bufferedrowiterator java at org apache spark sql execution wholestagecodegenexec anon hasnext wholestagecodegenexec scala at org apache spark sql execution sparkplan anonfun getbytearrayrdd sparkplan scala at org apache spark rdd rdd anonfun mappartitionsinternal rdd scala at org apache spark rdd rdd anonfun mappartitionsinternal adapted rdd scala at org apache spark rdd mappartitionsrdd compute mappartitionsrdd scala at org apache spark rdd rdd computeorreadcheckpoint rdd scala at org apache spark rdd rdd iterator rdd scala at org apache spark scheduler resulttask runtask resulttask scala at org apache spark scheduler task run task scala at org apache spark executor executor taskrunner anonfun run executor scala at org apache spark util utils trywithsafefinally utils scala at org apache spark executor executor taskrunner run executor scala at java util concurrent threadpoolexecutor runworker threadpoolexecutor java at java util concurrent threadpoolexecutor worker run threadpoolexecutor java at java lang thread run thread java
| 1
|
296
| 6,047,971,796
|
IssuesEvent
|
2017-06-12 15:29:33
|
dotnet/roslyn
|
https://api.github.com/repos/dotnet/roslyn
|
reopened
|
Access violation in RoslynCodeAnalysisService32 reading from memory mapped file
|
Area-IDE Bug Tenet-Reliability
|
**Version Used**: 15.3 preview 1
**Stack trace**
```
Application: ServiceHub.RoslynCodeAnalysisService32.exe
Framework Version: v4.0.30319
Description: The process was terminated due to an unhandled exception.
Exception Info: System.AccessViolationException
at Microsoft.CodeAnalysis.Host.TemporaryStorageServiceFactory+MemoryMappedInfo+SharedReadableStream.ReadByte()
at System.IO.BinaryReader.ReadByte()
at Roslyn.Utilities.ObjectReader.ReadValueWorker()
at Roslyn.Utilities.ObjectReader.<ReadValue>b__25_0()
at System.Threading.Tasks.Task`1[[System.__Canon, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]].InnerInvoke()
at System.Threading.Tasks.Task.Execute()
at System.Threading.Tasks.Task.ExecutionContextCallback(System.Object)
at System.Threading.ExecutionContext.RunInternal(System.Threading.ExecutionContext, System.Threading.ContextCallback, System.Object, Boolean)
at System.Threading.ExecutionContext.Run(System.Threading.ExecutionContext, System.Threading.ContextCallback, System.Object, Boolean)
at System.Threading.Tasks.Task.ExecuteWithThreadLocal(System.Threading.Tasks.Task ByRef)
at System.Threading.Tasks.Task.ExecuteEntry(Boolean)
at System.Threading.Tasks.ThreadPoolTaskScheduler.LongRunningThreadWork(System.Object)
at System.Threading.ThreadHelper.ThreadStart_Context(System.Object)
at System.Threading.ExecutionContext.RunInternal(System.Threading.ExecutionContext, System.Threading.ContextCallback, System.Object, Boolean)
at System.Threading.ExecutionContext.Run(System.Threading.ExecutionContext, System.Threading.ContextCallback, System.Object, Boolean)
at System.Threading.ExecutionContext.Run(System.Threading.ExecutionContext, System.Threading.ContextCallback, System.Object)
at System.Threading.ThreadHelper.ThreadStart(System.Object)
```
|
True
|
Access violation in RoslynCodeAnalysisService32 reading from memory mapped file - **Version Used**: 15.3 preview 1
**Stack trace**
```
Application: ServiceHub.RoslynCodeAnalysisService32.exe
Framework Version: v4.0.30319
Description: The process was terminated due to an unhandled exception.
Exception Info: System.AccessViolationException
at Microsoft.CodeAnalysis.Host.TemporaryStorageServiceFactory+MemoryMappedInfo+SharedReadableStream.ReadByte()
at System.IO.BinaryReader.ReadByte()
at Roslyn.Utilities.ObjectReader.ReadValueWorker()
at Roslyn.Utilities.ObjectReader.<ReadValue>b__25_0()
at System.Threading.Tasks.Task`1[[System.__Canon, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]].InnerInvoke()
at System.Threading.Tasks.Task.Execute()
at System.Threading.Tasks.Task.ExecutionContextCallback(System.Object)
at System.Threading.ExecutionContext.RunInternal(System.Threading.ExecutionContext, System.Threading.ContextCallback, System.Object, Boolean)
at System.Threading.ExecutionContext.Run(System.Threading.ExecutionContext, System.Threading.ContextCallback, System.Object, Boolean)
at System.Threading.Tasks.Task.ExecuteWithThreadLocal(System.Threading.Tasks.Task ByRef)
at System.Threading.Tasks.Task.ExecuteEntry(Boolean)
at System.Threading.Tasks.ThreadPoolTaskScheduler.LongRunningThreadWork(System.Object)
at System.Threading.ThreadHelper.ThreadStart_Context(System.Object)
at System.Threading.ExecutionContext.RunInternal(System.Threading.ExecutionContext, System.Threading.ContextCallback, System.Object, Boolean)
at System.Threading.ExecutionContext.Run(System.Threading.ExecutionContext, System.Threading.ContextCallback, System.Object, Boolean)
at System.Threading.ExecutionContext.Run(System.Threading.ExecutionContext, System.Threading.ContextCallback, System.Object)
at System.Threading.ThreadHelper.ThreadStart(System.Object)
```
|
reli
|
access violation in reading from memory mapped file version used preview stack trace application servicehub exe framework version description the process was terminated due to an unhandled exception exception info system accessviolationexception at microsoft codeanalysis host temporarystorageservicefactory memorymappedinfo sharedreadablestream readbyte at system io binaryreader readbyte at roslyn utilities objectreader readvalueworker at roslyn utilities objectreader b at system threading tasks task innerinvoke at system threading tasks task execute at system threading tasks task executioncontextcallback system object at system threading executioncontext runinternal system threading executioncontext system threading contextcallback system object boolean at system threading executioncontext run system threading executioncontext system threading contextcallback system object boolean at system threading tasks task executewiththreadlocal system threading tasks task byref at system threading tasks task executeentry boolean at system threading tasks threadpooltaskscheduler longrunningthreadwork system object at system threading threadhelper threadstart context system object at system threading executioncontext runinternal system threading executioncontext system threading contextcallback system object boolean at system threading executioncontext run system threading executioncontext system threading contextcallback system object boolean at system threading executioncontext run system threading executioncontext system threading contextcallback system object at system threading threadhelper threadstart system object
| 1
|
602,215
| 18,456,767,966
|
IssuesEvent
|
2021-10-15 17:33:52
|
massenergize/frontend-portal
|
https://api.github.com/repos/massenergize/frontend-portal
|
closed
|
Add data explanation dialog on Impact page
|
enhancement Priority 1
|
Add a button or link on impact page "Explanation of Data";
The dialog should say (and we can update the text as needed):
Data shown in the impact graphs comes from two sources:
1. Data collected on the platform from community members who have taken actions;
2. Data entered by Community Admins for reported actions from State or Partner databases, or from previous community programs.
On the Community impact totals (donut graphs):
1. The Actions Completed graph shows the sum of self reported and state/partner data. In some cases, there may be double counting
2. The Households Engaged is an estimate. Communities sum up self reported households, plus the number of actions completed in the category with the largest number of state/partner values, and added community engagement efforts (plus community specific campaign efforts)
3. The Caron Reduction graph (if shown) shows the estimated reduction for actions taken on the platform, which currently use Massachusetts averages for those actions. It may also include estimated carbon reduction from reported State/Partner data or previous programs, if that is provided by the Community Admin.
|
1.0
|
Add data explanation dialog on Impact page - Add a button or link on impact page "Explanation of Data";
The dialog should say (and we can update the text as needed):
Data shown in the impact graphs comes from two sources:
1. Data collected on the platform from community members who have taken actions;
2. Data entered by Community Admins for reported actions from State or Partner databases, or from previous community programs.
On the Community impact totals (donut graphs):
1. The Actions Completed graph shows the sum of self reported and state/partner data. In some cases, there may be double counting
2. The Households Engaged is an estimate. Communities sum up self reported households, plus the number of actions completed in the category with the largest number of state/partner values, and added community engagement efforts (plus community specific campaign efforts)
3. The Caron Reduction graph (if shown) shows the estimated reduction for actions taken on the platform, which currently use Massachusetts averages for those actions. It may also include estimated carbon reduction from reported State/Partner data or previous programs, if that is provided by the Community Admin.
|
non_reli
|
add data explanation dialog on impact page add a button or link on impact page explanation of data the dialog should say and we can update the text as needed data shown in the impact graphs comes from two sources data collected on the platform from community members who have taken actions data entered by community admins for reported actions from state or partner databases or from previous community programs on the community impact totals donut graphs the actions completed graph shows the sum of self reported and state partner data in some cases there may be double counting the households engaged is an estimate communities sum up self reported households plus the number of actions completed in the category with the largest number of state partner values and added community engagement efforts plus community specific campaign efforts the caron reduction graph if shown shows the estimated reduction for actions taken on the platform which currently use massachusetts averages for those actions it may also include estimated carbon reduction from reported state partner data or previous programs if that is provided by the community admin
| 0
|
7,376
| 10,514,545,675
|
IssuesEvent
|
2019-09-28 01:30:39
|
metabase/metabase
|
https://api.github.com/repos/metabase/metabase
|
opened
|
When converting SparkSQL questions to SQL timestamps are converted wrong
|
.Backend Database/Spark Priority:P3 Query Processor Type:Bug
|
This is the exact same issue as #11009 but for SparkSQL. In either 0.31 or 0.32 we improved logic converting a question to SQL so literal values are spliced in instead of leaving `?` parameter placeholders. However, the literal generated for `Timestamp`s was wrong.
|
1.0
|
When converting SparkSQL questions to SQL timestamps are converted wrong - This is the exact same issue as #11009 but for SparkSQL. In either 0.31 or 0.32 we improved logic converting a question to SQL so literal values are spliced in instead of leaving `?` parameter placeholders. However, the literal generated for `Timestamp`s was wrong.
|
non_reli
|
when converting sparksql questions to sql timestamps are converted wrong this is the exact same issue as but for sparksql in either or we improved logic converting a question to sql so literal values are spliced in instead of leaving parameter placeholders however the literal generated for timestamp s was wrong
| 0
|
573,244
| 17,023,615,629
|
IssuesEvent
|
2021-07-03 02:56:20
|
tomhughes/trac-tickets
|
https://api.github.com/repos/tomhughes/trac-tickets
|
closed
|
[general] site relations in mapnik
|
Component: mapnik Priority: major Resolution: wontfix Type: enhancement
|
**[Submitted to the original trac issue database at 4.41pm, Tuesday, 13th July 2010]**
I would really love to have site-relations integrated in the current mapnik stylesheet.
Here are some examples:
http://www.openstreetmap.org/browse/relation/1030019
http://www.openstreetmap.org/browse/relation/1029540
http://www.openstreetmap.org/browse/relation/1026680
|
1.0
|
[general] site relations in mapnik - **[Submitted to the original trac issue database at 4.41pm, Tuesday, 13th July 2010]**
I would really love to have site-relations integrated in the current mapnik stylesheet.
Here are some examples:
http://www.openstreetmap.org/browse/relation/1030019
http://www.openstreetmap.org/browse/relation/1029540
http://www.openstreetmap.org/browse/relation/1026680
|
non_reli
|
site relations in mapnik i would really love to have site relations integrated in the current mapnik stylesheet here are some examples
| 0
|
563
| 8,614,107,164
|
IssuesEvent
|
2018-11-19 16:37:31
|
openfisca/openfisca-france
|
https://api.github.com/repos/openfisca/openfisca-france
|
reopened
|
Gestion variables revenus fonciers
|
kind:meta note:calculation-reliability
|
Dans OF France coexistent les variables `revenus_locatifs` (variable mensuelle) et `revenus_fonciers_minima_sociaux` (mensuelle aussi, mais découlant des revenus fonciers des déclarations fiscales). Comment gérer ces deux variables, qui traitent des mêmes revenus ?
|
True
|
Gestion variables revenus fonciers - Dans OF France coexistent les variables `revenus_locatifs` (variable mensuelle) et `revenus_fonciers_minima_sociaux` (mensuelle aussi, mais découlant des revenus fonciers des déclarations fiscales). Comment gérer ces deux variables, qui traitent des mêmes revenus ?
|
reli
|
gestion variables revenus fonciers dans of france coexistent les variables revenus locatifs variable mensuelle et revenus fonciers minima sociaux mensuelle aussi mais découlant des revenus fonciers des déclarations fiscales comment gérer ces deux variables qui traitent des mêmes revenus
| 1
|
3,045
| 31,847,500,709
|
IssuesEvent
|
2023-09-14 21:13:15
|
pulumi/templates
|
https://api.github.com/repos/pulumi/templates
|
closed
|
SageMaker template causing test failures
|
kind/engineering impact/reliability resolution/no-repro area/templates
|
The `sagemaker-aws-python` template is causing test failures because the tests expect no changes, and the Pulumi program reports changes related to the Cloudwatch metrics.
|
True
|
SageMaker template causing test failures - The `sagemaker-aws-python` template is causing test failures because the tests expect no changes, and the Pulumi program reports changes related to the Cloudwatch metrics.
|
reli
|
sagemaker template causing test failures the sagemaker aws python template is causing test failures because the tests expect no changes and the pulumi program reports changes related to the cloudwatch metrics
| 1
|
684
| 9,791,596,572
|
IssuesEvent
|
2019-06-10 15:23:11
|
crossplaneio/crossplane
|
https://api.github.com/repos/crossplaneio/crossplane
|
opened
|
ref counting for ExtensionRequest to Extension
|
extensions reliability
|
**Is this a bug report or feature request?**
* Feature Request
**What should the feature do:** When multiple `ExtensionRequest` all point to the same underlying `Extension`, we should do the following:
* only install the underlying `Extension` once
* only remove the underlying `Extension` once all `ExtensionRequests` that reference it have been removed
**What is use case behind this feature:** It is possible that multiple `ExtensionRequests` could all request the same underlying `Extension`, so we should handle this scenario cleanly.
|
True
|
ref counting for ExtensionRequest to Extension - **Is this a bug report or feature request?**
* Feature Request
**What should the feature do:** When multiple `ExtensionRequest` all point to the same underlying `Extension`, we should do the following:
* only install the underlying `Extension` once
* only remove the underlying `Extension` once all `ExtensionRequests` that reference it have been removed
**What is use case behind this feature:** It is possible that multiple `ExtensionRequests` could all request the same underlying `Extension`, so we should handle this scenario cleanly.
|
reli
|
ref counting for extensionrequest to extension is this a bug report or feature request feature request what should the feature do when multiple extensionrequest all point to the same underlying extension we should do the following only install the underlying extension once only remove the underlying extension once all extensionrequests that reference it have been removed what is use case behind this feature it is possible that multiple extensionrequests could all request the same underlying extension so we should handle this scenario cleanly
| 1
|
1,537
| 16,827,276,888
|
IssuesEvent
|
2021-06-17 20:26:16
|
emmamei/cdkey
|
https://api.github.com/repos/emmamei/cdkey
|
opened
|
For the new listener variables, need better name than listenChoice
|
reliabilityfix
|
The name `listenChoice` may have been accurate for the first few files, but it needs to be more generic for the rest.
Perhaps `listenMessage`.
|
True
|
For the new listener variables, need better name than listenChoice - The name `listenChoice` may have been accurate for the first few files, but it needs to be more generic for the rest.
Perhaps `listenMessage`.
|
reli
|
for the new listener variables need better name than listenchoice the name listenchoice may have been accurate for the first few files but it needs to be more generic for the rest perhaps listenmessage
| 1
|
33,166
| 4,817,200,342
|
IssuesEvent
|
2016-11-04 12:55:58
|
mgrenier/remote-ftp
|
https://api.github.com/repos/mgrenier/remote-ftp
|
closed
|
Uncaught TypeError: Cannot read property 'isExpanded' of null
|
bug testing
|
Steps to reproduce:
1. Rename a folder to one that exists
2. Expand the edited folder (will still have its previous name)
When doing the same with files all seems good.
**Atom Version**: 1.11.1
**Electron Version**: 0.37.8
**System**: Mac OS X 10.12
**Thrown From**: [Remote-FTP](https://github.com/mgrenier/remote-ftp) package, v0.8.3
### Stack Trace
Uncaught TypeError: Cannot read property 'isExpanded' of null
```
At /Users/richardprotasov/.atom/packages/Remote-FTP/lib/views/directory-view.js:152
TypeError: Cannot read property 'isExpanded' of null
at DirectoryView.module.exports.DirectoryView.setClasses (/Users/richardprotasov/.atom/packages/Remote-FTP/lib/views/directory-view.js:152:16)
at /Users/richardprotasov/.atom/packages/Remote-FTP/lib/views/directory-view.js:55:52
at /Applications/Atom.app/Contents/Resources/app.asar/node_modules/emissary/lib/emitter.js:155:30
at Array.forEach (native)
at Behavior.module.exports.Emitter.emitSlow (/Applications/Atom.app/Contents/Resources/app.asar/node_modules/emissary/lib/emitter.js:154:47)
at Behavior.module.exports.Emitter.emit (/Applications/Atom.app/Contents/Resources/app.asar/node_modules/emissary/lib/emitter.js:107:30)
at Behavior.module.exports.Behavior.emit (/Applications/Atom.app/Contents/Resources/app.asar/node_modules/emissary/lib/behavior.js:44:38)
at Behavior.module.exports.Signal.emitValue (/Applications/Atom.app/Contents/Resources/app.asar/node_modules/emissary/lib/signal.js:82:19)
at Directory.module.exports.Model.set (/Users/richardprotasov/.atom/packages/Remote-FTP/node_modules/theorist/lib/model.js:166:21)
at Directory.accessor.set (/Users/richardprotasov/.atom/packages/Remote-FTP/node_modules/theorist/lib/model.js:57:23)
at DirectoryView.module.exports.DirectoryView.collapse (/Users/richardprotasov/.atom/packages/Remote-FTP/lib/views/directory-view.js:172:24)
at DirectoryView.module.exports.DirectoryView.toggle (/Users/richardprotasov/.atom/packages/Remote-FTP/lib/views/directory-view.js:185:9)
at space-pen-li.<anonymous> (/Users/richardprotasov/.atom/packages/Remote-FTP/lib/views/directory-view.js:85:13)
at space-pen-li.jQuery.event.dispatch (/Applications/Atom.app/Contents/Resources/app.asar/node_modules/jquery/dist/jquery.js:4435:9)
at space-pen-li.elemData.handle (/Applications/Atom.app/Contents/Resources/app.asar/node_modules/jquery/dist/jquery.js:4121:28)
```
### Commands
```
-5:33.2.0 settings-view:open (atom-text-editor.editor.is-focused)
-0:42.7.0 remote-ftp:move-selected (span.name.icon.icon-file-directory)
-0:41 core:copy (atom-text-editor.editor.mini.is-focused)
5x -0:37.6.0 core:backspace (atom-text-editor.editor.mini.is-focused)
-0:35.7.0 core:confirm (atom-text-editor.editor.mini.is-focused)
-0:19.4.0 remote-ftp:move-selected (span.name.icon.icon-file-directory)
-0:15.7.0 core:confirm (atom-text-editor.editor.mini.is-focused)
```
### Config
``` json
{
"core": {
"audioBeep": false,
"disabledPackages": [
"timecop",
"spell-check",
"open-on-github",
"language-ruby-on-rails",
"language-property-list",
"language-objective-c",
"language-mustache",
"language-less",
"autocomplete-atom-api",
"language-ruby",
"status-bar"
],
"excludeVcsIgnoredPaths": false,
"packagesWithKeymapsDisabled": [],
"telemetryConsent": "no",
"themes": [
"one-light-ui",
"minimal-syntax"
]
}
}
```
### Installed Packages
``` coffee
# User
aesthetic-ui, v2.0.0 (inactive)
atom-alignment, v0.12.1 (active)
atom-autocomplete-php, v0.18.9 (active)
color-picker, v2.2.2 (active)
crayon-atom, v0.2.3 (inactive)
duotone-blue-dark-syntax, v1.2.0 (inactive)
duotone-bright-sea-syntax, v1.0.0-mod.1 (inactive)
duotone-dark-syntax, v1.0.0 (inactive)
duotone-snow, v1.2.0 (inactive)
fizzy, v0.16.0 (inactive)
flatwhite-syntax, v0.7.2 (inactive)
fonts, v1.6.0 (active)
github-2016-syntax, v1.2.0 (inactive)
github-atom-light-syntax, v0.2.0 (inactive)
gruvbox, v1.0.5 (inactive)
language-haskell, v1.9.9 (active)
language-rust, v0.4.6 (active)
minimal-syntax, v0.13.2 (active)
minimap, v4.24.7 (active)
my-minimap-plugin, v0.0.0 (active)
naturepurple-dark-syntax, v0.1.0 (inactive)
princess-syntax, v0.1.3 (inactive)
Remote-FTP, v0.8.3 (active)
spacegray-light-neue-ui, v0.1.5 (inactive)
subway-barcelona, v1.1.1 (inactive)
subway-copenhagen, v1.1.1 (inactive)
svn, v0.0.12 (active)
unity-ui, v2.1.5 (inactive)
web-view, v3.0.0 (active)
Wild-Cherry, v0.7.13 (inactive)
atom-dark-syntax, v0.27.0 (inactive)
atom-dark-ui, v0.52.0 (inactive)
atom-light-syntax, v0.28.0 (inactive)
atom-light-ui, v0.44.0 (inactive)
base16-tomorrow-dark-theme, v1.2.0 (inactive)
base16-tomorrow-light-theme, v1.2.0 (inactive)
one-dark-ui, v1.6.0 (inactive)
one-light-ui, v1.6.0 (active)
one-dark-syntax, v1.3.0 (inactive)
one-light-syntax, v1.3.0 (inactive)
solarized-dark-syntax, v1.0.2 (inactive)
solarized-light-syntax, v1.0.2 (inactive)
about, v1.7.0 (active)
archive-view, v0.61.1 (active)
autocomplete-atom-api, v0.10.0 (inactive)
autocomplete-css, v0.11.2 (active)
autocomplete-html, v0.7.2 (active)
autocomplete-plus, v2.31.1 (active)
autocomplete-snippets, v1.11.0 (active)
autoflow, v0.27.0 (inactive)
autosave, v0.23.1 (active)
background-tips, v0.26.1 (active)
bookmarks, v0.42.0 (active)
bracket-matcher, v0.82.1 (active)
command-palette, v0.38.0 (inactive)
deprecation-cop, v0.54.1 (active)
dev-live-reload, v0.47.0 (active)
encoding-selector, v0.22.0 (active)
exception-reporting, v0.40.0 (active)
find-and-replace, v0.201.1 (inactive)
fuzzy-finder, v1.4.0 (active)
git-diff, v1.1.0 (active)
go-to-line, v0.31.0 (inactive)
grammar-selector, v0.48.2 (active)
image-view, v0.59.0 (active)
incompatible-packages, v0.26.1 (active)
keybinding-resolver, v0.35.0 (active)
line-ending-selector, v0.5.0 (active)
link, v0.31.1 (inactive)
markdown-preview, v0.158.0 (active)
metrics, v1.0.0 (active)
notifications, v0.65.1 (active)
open-on-github, v1.2.0 (inactive)
package-generator, v1.0.0 (inactive)
settings-view, v0.242.2 (active)
snippets, v1.0.2 (active)
spell-check, v0.68.2 (inactive)
status-bar, v1.4.1 (inactive)
styleguide, v0.47.0 (active)
symbols-view, v0.113.1 (inactive)
tabs, v0.101.0 (active)
timecop, v0.33.2 (inactive)
tree-view, v0.209.3 (active)
update-package-dependencies, v0.10.0 (active)
welcome, v0.35.1 (active)
whitespace, v0.33.0 (active)
wrap-guide, v0.38.2 (active)
language-c, v0.52.1 (active)
language-clojure, v0.21.0 (active)
language-coffee-script, v0.47.2 (active)
language-csharp, v0.12.1 (active)
language-css, v0.37.1 (active)
language-gfm, v0.88.0 (active)
language-git, v0.15.0 (active)
language-go, v0.42.1 (active)
language-html, v0.45.1 (active)
language-hyperlink, v0.16.0 (active)
language-java, v0.23.0 (active)
language-javascript, v0.119.0 (active)
language-json, v0.18.2 (active)
language-less, v0.29.5 (inactive)
language-make, v0.22.2 (active)
language-mustache, v0.13.0 (inactive)
language-objective-c, v0.15.1 (inactive)
language-perl, v0.35.0 (active)
language-php, v0.37.2 (active)
language-property-list, v0.8.0 (inactive)
language-python, v0.45.0 (active)
language-ruby, v0.69.0 (inactive)
language-ruby-on-rails, v0.25.0 (inactive)
language-sass, v0.56.0 (active)
language-shellscript, v0.22.4 (active)
language-source, v0.9.0 (active)
language-sql, v0.23.0 (active)
language-text, v0.7.1 (active)
language-todo, v0.28.0 (active)
language-toml, v0.18.0 (active)
language-xml, v0.34.9 (active)
language-yaml, v0.26.0 (active)
# Dev
No dev packages
```
|
1.0
|
Uncaught TypeError: Cannot read property 'isExpanded' of null - Steps to reproduce:
1. Rename a folder to one that exists
2. Expand the edited folder (will still have its previous name)
When doing the same with files all seems good.
**Atom Version**: 1.11.1
**Electron Version**: 0.37.8
**System**: Mac OS X 10.12
**Thrown From**: [Remote-FTP](https://github.com/mgrenier/remote-ftp) package, v0.8.3
### Stack Trace
Uncaught TypeError: Cannot read property 'isExpanded' of null
```
At /Users/richardprotasov/.atom/packages/Remote-FTP/lib/views/directory-view.js:152
TypeError: Cannot read property 'isExpanded' of null
at DirectoryView.module.exports.DirectoryView.setClasses (/Users/richardprotasov/.atom/packages/Remote-FTP/lib/views/directory-view.js:152:16)
at /Users/richardprotasov/.atom/packages/Remote-FTP/lib/views/directory-view.js:55:52
at /Applications/Atom.app/Contents/Resources/app.asar/node_modules/emissary/lib/emitter.js:155:30
at Array.forEach (native)
at Behavior.module.exports.Emitter.emitSlow (/Applications/Atom.app/Contents/Resources/app.asar/node_modules/emissary/lib/emitter.js:154:47)
at Behavior.module.exports.Emitter.emit (/Applications/Atom.app/Contents/Resources/app.asar/node_modules/emissary/lib/emitter.js:107:30)
at Behavior.module.exports.Behavior.emit (/Applications/Atom.app/Contents/Resources/app.asar/node_modules/emissary/lib/behavior.js:44:38)
at Behavior.module.exports.Signal.emitValue (/Applications/Atom.app/Contents/Resources/app.asar/node_modules/emissary/lib/signal.js:82:19)
at Directory.module.exports.Model.set (/Users/richardprotasov/.atom/packages/Remote-FTP/node_modules/theorist/lib/model.js:166:21)
at Directory.accessor.set (/Users/richardprotasov/.atom/packages/Remote-FTP/node_modules/theorist/lib/model.js:57:23)
at DirectoryView.module.exports.DirectoryView.collapse (/Users/richardprotasov/.atom/packages/Remote-FTP/lib/views/directory-view.js:172:24)
at DirectoryView.module.exports.DirectoryView.toggle (/Users/richardprotasov/.atom/packages/Remote-FTP/lib/views/directory-view.js:185:9)
at space-pen-li.<anonymous> (/Users/richardprotasov/.atom/packages/Remote-FTP/lib/views/directory-view.js:85:13)
at space-pen-li.jQuery.event.dispatch (/Applications/Atom.app/Contents/Resources/app.asar/node_modules/jquery/dist/jquery.js:4435:9)
at space-pen-li.elemData.handle (/Applications/Atom.app/Contents/Resources/app.asar/node_modules/jquery/dist/jquery.js:4121:28)
```
### Commands
```
-5:33.2.0 settings-view:open (atom-text-editor.editor.is-focused)
-0:42.7.0 remote-ftp:move-selected (span.name.icon.icon-file-directory)
-0:41 core:copy (atom-text-editor.editor.mini.is-focused)
5x -0:37.6.0 core:backspace (atom-text-editor.editor.mini.is-focused)
-0:35.7.0 core:confirm (atom-text-editor.editor.mini.is-focused)
-0:19.4.0 remote-ftp:move-selected (span.name.icon.icon-file-directory)
-0:15.7.0 core:confirm (atom-text-editor.editor.mini.is-focused)
```
### Config
``` json
{
"core": {
"audioBeep": false,
"disabledPackages": [
"timecop",
"spell-check",
"open-on-github",
"language-ruby-on-rails",
"language-property-list",
"language-objective-c",
"language-mustache",
"language-less",
"autocomplete-atom-api",
"language-ruby",
"status-bar"
],
"excludeVcsIgnoredPaths": false,
"packagesWithKeymapsDisabled": [],
"telemetryConsent": "no",
"themes": [
"one-light-ui",
"minimal-syntax"
]
}
}
```
### Installed Packages
``` coffee
# User
aesthetic-ui, v2.0.0 (inactive)
atom-alignment, v0.12.1 (active)
atom-autocomplete-php, v0.18.9 (active)
color-picker, v2.2.2 (active)
crayon-atom, v0.2.3 (inactive)
duotone-blue-dark-syntax, v1.2.0 (inactive)
duotone-bright-sea-syntax, v1.0.0-mod.1 (inactive)
duotone-dark-syntax, v1.0.0 (inactive)
duotone-snow, v1.2.0 (inactive)
fizzy, v0.16.0 (inactive)
flatwhite-syntax, v0.7.2 (inactive)
fonts, v1.6.0 (active)
github-2016-syntax, v1.2.0 (inactive)
github-atom-light-syntax, v0.2.0 (inactive)
gruvbox, v1.0.5 (inactive)
language-haskell, v1.9.9 (active)
language-rust, v0.4.6 (active)
minimal-syntax, v0.13.2 (active)
minimap, v4.24.7 (active)
my-minimap-plugin, v0.0.0 (active)
naturepurple-dark-syntax, v0.1.0 (inactive)
princess-syntax, v0.1.3 (inactive)
Remote-FTP, v0.8.3 (active)
spacegray-light-neue-ui, v0.1.5 (inactive)
subway-barcelona, v1.1.1 (inactive)
subway-copenhagen, v1.1.1 (inactive)
svn, v0.0.12 (active)
unity-ui, v2.1.5 (inactive)
web-view, v3.0.0 (active)
Wild-Cherry, v0.7.13 (inactive)
atom-dark-syntax, v0.27.0 (inactive)
atom-dark-ui, v0.52.0 (inactive)
atom-light-syntax, v0.28.0 (inactive)
atom-light-ui, v0.44.0 (inactive)
base16-tomorrow-dark-theme, v1.2.0 (inactive)
base16-tomorrow-light-theme, v1.2.0 (inactive)
one-dark-ui, v1.6.0 (inactive)
one-light-ui, v1.6.0 (active)
one-dark-syntax, v1.3.0 (inactive)
one-light-syntax, v1.3.0 (inactive)
solarized-dark-syntax, v1.0.2 (inactive)
solarized-light-syntax, v1.0.2 (inactive)
about, v1.7.0 (active)
archive-view, v0.61.1 (active)
autocomplete-atom-api, v0.10.0 (inactive)
autocomplete-css, v0.11.2 (active)
autocomplete-html, v0.7.2 (active)
autocomplete-plus, v2.31.1 (active)
autocomplete-snippets, v1.11.0 (active)
autoflow, v0.27.0 (inactive)
autosave, v0.23.1 (active)
background-tips, v0.26.1 (active)
bookmarks, v0.42.0 (active)
bracket-matcher, v0.82.1 (active)
command-palette, v0.38.0 (inactive)
deprecation-cop, v0.54.1 (active)
dev-live-reload, v0.47.0 (active)
encoding-selector, v0.22.0 (active)
exception-reporting, v0.40.0 (active)
find-and-replace, v0.201.1 (inactive)
fuzzy-finder, v1.4.0 (active)
git-diff, v1.1.0 (active)
go-to-line, v0.31.0 (inactive)
grammar-selector, v0.48.2 (active)
image-view, v0.59.0 (active)
incompatible-packages, v0.26.1 (active)
keybinding-resolver, v0.35.0 (active)
line-ending-selector, v0.5.0 (active)
link, v0.31.1 (inactive)
markdown-preview, v0.158.0 (active)
metrics, v1.0.0 (active)
notifications, v0.65.1 (active)
open-on-github, v1.2.0 (inactive)
package-generator, v1.0.0 (inactive)
settings-view, v0.242.2 (active)
snippets, v1.0.2 (active)
spell-check, v0.68.2 (inactive)
status-bar, v1.4.1 (inactive)
styleguide, v0.47.0 (active)
symbols-view, v0.113.1 (inactive)
tabs, v0.101.0 (active)
timecop, v0.33.2 (inactive)
tree-view, v0.209.3 (active)
update-package-dependencies, v0.10.0 (active)
welcome, v0.35.1 (active)
whitespace, v0.33.0 (active)
wrap-guide, v0.38.2 (active)
language-c, v0.52.1 (active)
language-clojure, v0.21.0 (active)
language-coffee-script, v0.47.2 (active)
language-csharp, v0.12.1 (active)
language-css, v0.37.1 (active)
language-gfm, v0.88.0 (active)
language-git, v0.15.0 (active)
language-go, v0.42.1 (active)
language-html, v0.45.1 (active)
language-hyperlink, v0.16.0 (active)
language-java, v0.23.0 (active)
language-javascript, v0.119.0 (active)
language-json, v0.18.2 (active)
language-less, v0.29.5 (inactive)
language-make, v0.22.2 (active)
language-mustache, v0.13.0 (inactive)
language-objective-c, v0.15.1 (inactive)
language-perl, v0.35.0 (active)
language-php, v0.37.2 (active)
language-property-list, v0.8.0 (inactive)
language-python, v0.45.0 (active)
language-ruby, v0.69.0 (inactive)
language-ruby-on-rails, v0.25.0 (inactive)
language-sass, v0.56.0 (active)
language-shellscript, v0.22.4 (active)
language-source, v0.9.0 (active)
language-sql, v0.23.0 (active)
language-text, v0.7.1 (active)
language-todo, v0.28.0 (active)
language-toml, v0.18.0 (active)
language-xml, v0.34.9 (active)
language-yaml, v0.26.0 (active)
# Dev
No dev packages
```
|
non_reli
|
uncaught typeerror cannot read property isexpanded of null steps to reproduce rename a folder to one that exists expand the edited folder will still have its previous name when doing the same with files all seems good atom version electron version system mac os x thrown from package stack trace uncaught typeerror cannot read property isexpanded of null at users richardprotasov atom packages remote ftp lib views directory view js typeerror cannot read property isexpanded of null at directoryview module exports directoryview setclasses users richardprotasov atom packages remote ftp lib views directory view js at users richardprotasov atom packages remote ftp lib views directory view js at applications atom app contents resources app asar node modules emissary lib emitter js at array foreach native at behavior module exports emitter emitslow applications atom app contents resources app asar node modules emissary lib emitter js at behavior module exports emitter emit applications atom app contents resources app asar node modules emissary lib emitter js at behavior module exports behavior emit applications atom app contents resources app asar node modules emissary lib behavior js at behavior module exports signal emitvalue applications atom app contents resources app asar node modules emissary lib signal js at directory module exports model set users richardprotasov atom packages remote ftp node modules theorist lib model js at directory accessor set users richardprotasov atom packages remote ftp node modules theorist lib model js at directoryview module exports directoryview collapse users richardprotasov atom packages remote ftp lib views directory view js at directoryview module exports directoryview toggle users richardprotasov atom packages remote ftp lib views directory view js at space pen li users richardprotasov atom packages remote ftp lib views directory view js at space pen li jquery event dispatch applications atom app contents resources app asar node modules jquery dist jquery js at space pen li elemdata handle applications atom app contents resources app asar node modules jquery dist jquery js commands settings view open atom text editor editor is focused remote ftp move selected span name icon icon file directory core copy atom text editor editor mini is focused core backspace atom text editor editor mini is focused core confirm atom text editor editor mini is focused remote ftp move selected span name icon icon file directory core confirm atom text editor editor mini is focused config json core audiobeep false disabledpackages timecop spell check open on github language ruby on rails language property list language objective c language mustache language less autocomplete atom api language ruby status bar excludevcsignoredpaths false packageswithkeymapsdisabled telemetryconsent no themes one light ui minimal syntax installed packages coffee user aesthetic ui inactive atom alignment active atom autocomplete php active color picker active crayon atom inactive duotone blue dark syntax inactive duotone bright sea syntax mod inactive duotone dark syntax inactive duotone snow inactive fizzy inactive flatwhite syntax inactive fonts active github syntax inactive github atom light syntax inactive gruvbox inactive language haskell active language rust active minimal syntax active minimap active my minimap plugin active naturepurple dark syntax inactive princess syntax inactive remote ftp active spacegray light neue ui inactive subway barcelona inactive subway copenhagen inactive svn active unity ui inactive web view active wild cherry inactive atom dark syntax inactive atom dark ui inactive atom light syntax inactive atom light ui inactive tomorrow dark theme inactive tomorrow light theme inactive one dark ui inactive one light ui active one dark syntax inactive one light syntax inactive solarized dark syntax inactive solarized light syntax inactive about active archive view active autocomplete atom api inactive autocomplete css active autocomplete html active autocomplete plus active autocomplete snippets active autoflow inactive autosave active background tips active bookmarks active bracket matcher active command palette inactive deprecation cop active dev live reload active encoding selector active exception reporting active find and replace inactive fuzzy finder active git diff active go to line inactive grammar selector active image view active incompatible packages active keybinding resolver active line ending selector active link inactive markdown preview active metrics active notifications active open on github inactive package generator inactive settings view active snippets active spell check inactive status bar inactive styleguide active symbols view inactive tabs active timecop inactive tree view active update package dependencies active welcome active whitespace active wrap guide active language c active language clojure active language coffee script active language csharp active language css active language gfm active language git active language go active language html active language hyperlink active language java active language javascript active language json active language less inactive language make active language mustache inactive language objective c inactive language perl active language php active language property list inactive language python active language ruby inactive language ruby on rails inactive language sass active language shellscript active language source active language sql active language text active language todo active language toml active language xml active language yaml active dev no dev packages
| 0
|
66,554
| 16,652,974,346
|
IssuesEvent
|
2021-06-05 02:12:41
|
ARMmaster17/Captain
|
https://api.github.com/repos/ARMmaster17/Captain
|
opened
|
File paths do not work on Windows
|
bug component:ATC component:Builder component:Radar difficulty:medium
|
## General Information
- This is a: bug report
- Captain version: `main`
- OS: Windows 10 Pro x64
- Proxmox version: `v6.3-3`
## Issue Report
All paths in most Captain components are meant for a Debian-based distro with paths to `/etc/...`
## Related issues
Related to #135
|
1.0
|
File paths do not work on Windows - ## General Information
- This is a: bug report
- Captain version: `main`
- OS: Windows 10 Pro x64
- Proxmox version: `v6.3-3`
## Issue Report
All paths in most Captain components are meant for a Debian-based distro with paths to `/etc/...`
## Related issues
Related to #135
|
non_reli
|
file paths do not work on windows general information this is a bug report captain version main os windows pro proxmox version issue report all paths in most captain components are meant for a debian based distro with paths to etc related issues related to
| 0
|
1,358
| 15,325,367,376
|
IssuesEvent
|
2021-02-26 01:08:57
|
FoundationDB/fdb-kubernetes-operator
|
https://api.github.com/repos/FoundationDB/fdb-kubernetes-operator
|
closed
|
Blocking some instances of the operator from taking global operations
|
reliability
|
There may be some partition scenarios where an instance of the operator is able to talk to the cluster but cannot have its cluster spec updated. This could lead to problems where two instances of the operator have different views of the desired database configuration, and change the configuration back and forth. As an escape hatch for these kind of situations, I think we should have an option for a blocklist of instances of the operator that should not be able to take global operations. We should be able to add an entry on any instance of the operator and get it persisted in a way that will tell the blocked instance that it cannot take global operations.
We'll need to think carefully about how this gets set and unset. I think we want to use the cluster spec to make it easy for people to set through kubectl or whatever other tooling they use to deploy clusters. I think we'll need an explicit removal operation to limit the change of two instances of the operator trying to assert conflicting blocklists.
|
True
|
Blocking some instances of the operator from taking global operations - There may be some partition scenarios where an instance of the operator is able to talk to the cluster but cannot have its cluster spec updated. This could lead to problems where two instances of the operator have different views of the desired database configuration, and change the configuration back and forth. As an escape hatch for these kind of situations, I think we should have an option for a blocklist of instances of the operator that should not be able to take global operations. We should be able to add an entry on any instance of the operator and get it persisted in a way that will tell the blocked instance that it cannot take global operations.
We'll need to think carefully about how this gets set and unset. I think we want to use the cluster spec to make it easy for people to set through kubectl or whatever other tooling they use to deploy clusters. I think we'll need an explicit removal operation to limit the change of two instances of the operator trying to assert conflicting blocklists.
|
reli
|
blocking some instances of the operator from taking global operations there may be some partition scenarios where an instance of the operator is able to talk to the cluster but cannot have its cluster spec updated this could lead to problems where two instances of the operator have different views of the desired database configuration and change the configuration back and forth as an escape hatch for these kind of situations i think we should have an option for a blocklist of instances of the operator that should not be able to take global operations we should be able to add an entry on any instance of the operator and get it persisted in a way that will tell the blocked instance that it cannot take global operations we ll need to think carefully about how this gets set and unset i think we want to use the cluster spec to make it easy for people to set through kubectl or whatever other tooling they use to deploy clusters i think we ll need an explicit removal operation to limit the change of two instances of the operator trying to assert conflicting blocklists
| 1
|
2,175
| 23,952,623,275
|
IssuesEvent
|
2022-09-12 12:47:16
|
adoptium/infrastructure
|
https://api.github.com/repos/adoptium/infrastructure
|
closed
|
"Vagrant Playbook Checker / Solaris" github check failing for all PRs
|
reliability
|
Sample check link: https://github.com/adoptium/infrastructure/runs/7750861669?check_suite_focus=true
```
Bringing machine 'adoptopenjdkSol10' up with 'virtualbox' provider...
==> adoptopenjdkSol10: Box 'solaris10' could not be found. Attempting to find and install...
adoptopenjdkSol10: Box Provider: virtualbox
adoptopenjdkSol10: Box Version: >= 0
==> adoptopenjdkSol10: Box file was not detected as metadata. Adding it directly...
==> adoptopenjdkSol10: Adding box 'solaris10' (v0) for provider: virtualbox
adoptopenjdkSol10: Downloading: solaris10
An error occurred while downloading the remote file. The error
message, if any, is reproduced below. Please fix this error and try
again.
Couldn't open file /Users/runner/work/infrastructure/infrastructure/ansible/solaris10
```
|
True
|
"Vagrant Playbook Checker / Solaris" github check failing for all PRs - Sample check link: https://github.com/adoptium/infrastructure/runs/7750861669?check_suite_focus=true
```
Bringing machine 'adoptopenjdkSol10' up with 'virtualbox' provider...
==> adoptopenjdkSol10: Box 'solaris10' could not be found. Attempting to find and install...
adoptopenjdkSol10: Box Provider: virtualbox
adoptopenjdkSol10: Box Version: >= 0
==> adoptopenjdkSol10: Box file was not detected as metadata. Adding it directly...
==> adoptopenjdkSol10: Adding box 'solaris10' (v0) for provider: virtualbox
adoptopenjdkSol10: Downloading: solaris10
An error occurred while downloading the remote file. The error
message, if any, is reproduced below. Please fix this error and try
again.
Couldn't open file /Users/runner/work/infrastructure/infrastructure/ansible/solaris10
```
|
reli
|
vagrant playbook checker solaris github check failing for all prs sample check link bringing machine up with virtualbox provider box could not be found attempting to find and install box provider virtualbox box version box file was not detected as metadata adding it directly adding box for provider virtualbox downloading an error occurred while downloading the remote file the error message if any is reproduced below please fix this error and try again couldn t open file users runner work infrastructure infrastructure ansible
| 1
|
781,875
| 27,452,925,514
|
IssuesEvent
|
2023-03-02 18:49:40
|
Just-Natsuki-Team/NatsukiModDev
|
https://api.github.com/repos/Just-Natsuki-Team/NatsukiModDev
|
closed
|
[ BUG REPORT ] - Multiple instances of JN results in potential save corruption
|
Bug High Priority
|
# Overview:
Currently, it is possible to open multiple instances of JN at the same time. Since these would all point to/reference the same persistent file, there is a risk of corruption as the save is accessed and/or written to by those instances.
Measures should be put in place to prevent multiple instances of JN being possible: to do this, we can use the `Singleton` class as provided by base DDLC.
## Replication steps:
Launch JN via any means while JN is already running.
## Additional information:
N/A
|
1.0
|
[ BUG REPORT ] - Multiple instances of JN results in potential save corruption - # Overview:
Currently, it is possible to open multiple instances of JN at the same time. Since these would all point to/reference the same persistent file, there is a risk of corruption as the save is accessed and/or written to by those instances.
Measures should be put in place to prevent multiple instances of JN being possible: to do this, we can use the `Singleton` class as provided by base DDLC.
## Replication steps:
Launch JN via any means while JN is already running.
## Additional information:
N/A
|
non_reli
|
multiple instances of jn results in potential save corruption overview currently it is possible to open multiple instances of jn at the same time since these would all point to reference the same persistent file there is a risk of corruption as the save is accessed and or written to by those instances measures should be put in place to prevent multiple instances of jn being possible to do this we can use the singleton class as provided by base ddlc replication steps launch jn via any means while jn is already running additional information n a
| 0
|
869
| 11,185,396,863
|
IssuesEvent
|
2020-01-01 01:14:03
|
dotnet/roslyn
|
https://api.github.com/repos/dotnet/roslyn
|
opened
|
An ExceptionUtilities.UnexpectedValue is throw by VB compiler
|
Area-Compilers Bug Language-VB Tenet-Reliability
|
Compile the following code as a library:
```
Imports System
Structure SSSS3
Public A As String
Public B As Integer
End Structure
Structure SSSS2
Public S3 As SSSS3
End Structure
Structure SSSS
Public S2 As SSSS2
End Structure
Structure SSS
Public S As SSSS
End Structure
Class Clazz
Sub TEST()
Dim x As New SSS()
With x.S
With .S2
With .S3
Dim s As Action = Sub()
.A = ""
End Sub
End With
End With
End With
x.ToString()
End Sub
End Class
```
Observed: Compiler crashes
Expected: Success, it looks like the native compiler succeeds.
```
Microsoft.CodeAnalysis.dll!Roslyn.Utilities.ExceptionUtilities.UnexpectedValue(object o) Line 20 C#
> Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.LambdaRewriter.Analysis.VerifyCaptured(Microsoft.CodeAnalysis.VisualBasic.Symbol variableOrParameter, Microsoft.CodeAnalysis.SyntaxNode syntax) Line 451 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.LambdaRewriter.Analysis.ReferenceVariable(Microsoft.CodeAnalysis.VisualBasic.Symbol variableOrParameter, Microsoft.CodeAnalysis.SyntaxNode syntax) Line 436 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.LambdaRewriter.Analysis.VisitLocal(Microsoft.CodeAnalysis.VisualBasic.BoundLocal node) Line 485 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundLocal.Accept(Microsoft.CodeAnalysis.VisualBasic.BoundTreeVisitor visitor) Line 6167 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundTreeWalkerWithStackGuard.VisitExpressionWithoutStackGuard(Microsoft.CodeAnalysis.VisualBasic.BoundExpression node) Line 59 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundTreeVisitor.VisitExpressionWithStackGuard(Integer recursionDepth, Microsoft.CodeAnalysis.VisualBasic.BoundExpression node) Line 184 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundTreeWalkerWithStackGuard.Visit(Microsoft.CodeAnalysis.VisualBasic.BoundNode node) Line 48 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundTreeWalker.VisitFieldAccess(Microsoft.CodeAnalysis.VisualBasic.BoundFieldAccess node) Line 11441 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundFieldAccess.Accept(Microsoft.CodeAnalysis.VisualBasic.BoundTreeVisitor visitor) Line 4170 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundTreeWalkerWithStackGuard.VisitExpressionWithoutStackGuard(Microsoft.CodeAnalysis.VisualBasic.BoundExpression node) Line 59 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundTreeVisitor.VisitExpressionWithStackGuard(Integer recursionDepth, Microsoft.CodeAnalysis.VisualBasic.BoundExpression node) Line 184 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundTreeWalkerWithStackGuard.Visit(Microsoft.CodeAnalysis.VisualBasic.BoundNode node) Line 48 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundTreeWalker.VisitFieldAccess(Microsoft.CodeAnalysis.VisualBasic.BoundFieldAccess node) Line 11441 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundFieldAccess.Accept(Microsoft.CodeAnalysis.VisualBasic.BoundTreeVisitor visitor) Line 4170 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundTreeWalkerWithStackGuard.VisitExpressionWithoutStackGuard(Microsoft.CodeAnalysis.VisualBasic.BoundExpression node) Line 59 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundTreeVisitor.VisitExpressionWithStackGuard(Integer recursionDepth, Microsoft.CodeAnalysis.VisualBasic.BoundExpression node) Line 184 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundTreeWalkerWithStackGuard.Visit(Microsoft.CodeAnalysis.VisualBasic.BoundNode node) Line 48 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundTreeWalker.VisitAssignmentOperator(Microsoft.CodeAnalysis.VisualBasic.BoundAssignmentOperator node) Line 11203 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundAssignmentOperator.Accept(Microsoft.CodeAnalysis.VisualBasic.BoundTreeVisitor visitor) Line 1786 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundTreeWalkerWithStackGuard.VisitExpressionWithoutStackGuard(Microsoft.CodeAnalysis.VisualBasic.BoundExpression node) Line 59 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundTreeVisitor.VisitExpressionWithStackGuard(Integer recursionDepth, Microsoft.CodeAnalysis.VisualBasic.BoundExpression node) Line 184 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundTreeWalkerWithStackGuard.Visit(Microsoft.CodeAnalysis.VisualBasic.BoundNode node) Line 48 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundTreeWalker.VisitExpressionStatement(Microsoft.CodeAnalysis.VisualBasic.BoundExpressionStatement node) Line 11517 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundExpressionStatement.Accept(Microsoft.CodeAnalysis.VisualBasic.BoundTreeVisitor visitor) Line 4857 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundTreeWalkerWithStackGuard.Visit(Microsoft.CodeAnalysis.VisualBasic.BoundNode node) Line 51 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundTreeWalker.VisitSequencePoint(Microsoft.CodeAnalysis.VisualBasic.BoundSequencePoint node) Line 11274 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundSequencePoint.Accept(Microsoft.CodeAnalysis.VisualBasic.BoundTreeVisitor visitor) Line 2506 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundTreeWalkerWithStackGuard.Visit(Microsoft.CodeAnalysis.VisualBasic.BoundNode node) Line 51 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundTreeWalker.VisitList(Of Microsoft.CodeAnalysis.VisualBasic.BoundStatement)(System.Collections.Immutable.ImmutableArray(Of Microsoft.CodeAnalysis.VisualBasic.BoundStatement) list) Line 19 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundTreeWalker.VisitBlock(Microsoft.CodeAnalysis.VisualBasic.BoundBlock node) Line 11457 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.LambdaRewriter.Analysis.VisitLambda(Microsoft.CodeAnalysis.VisualBasic.BoundLambda node, Boolean convertToExpressionTree) Line 326 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.LambdaRewriter.Analysis.VisitConversion(Microsoft.CodeAnalysis.VisualBasic.BoundConversion conversion) Line 366 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundConversion.Accept(Microsoft.CodeAnalysis.VisualBasic.BoundTreeVisitor visitor) Line 2123 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundTreeWalkerWithStackGuard.VisitExpressionWithoutStackGuard(Microsoft.CodeAnalysis.VisualBasic.BoundExpression node) Line 59 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundTreeVisitor.VisitExpressionWithStackGuard(Integer recursionDepth, Microsoft.CodeAnalysis.VisualBasic.BoundExpression node) Line 184 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundTreeWalkerWithStackGuard.Visit(Microsoft.CodeAnalysis.VisualBasic.BoundNode node) Line 48 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundTreeWalker.VisitAssignmentOperator(Microsoft.CodeAnalysis.VisualBasic.BoundAssignmentOperator node) Line 11205 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundAssignmentOperator.Accept(Microsoft.CodeAnalysis.VisualBasic.BoundTreeVisitor visitor) Line 1786 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundTreeWalkerWithStackGuard.VisitExpressionWithoutStackGuard(Microsoft.CodeAnalysis.VisualBasic.BoundExpression node) Line 59 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundTreeVisitor.VisitExpressionWithStackGuard(Microsoft.CodeAnalysis.VisualBasic.BoundExpression node) Line 203 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundTreeVisitor.VisitExpressionWithStackGuard(Integer recursionDepth, Microsoft.CodeAnalysis.VisualBasic.BoundExpression node) Line 186 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundTreeWalkerWithStackGuard.Visit(Microsoft.CodeAnalysis.VisualBasic.BoundNode node) Line 48 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundTreeWalker.VisitExpressionStatement(Microsoft.CodeAnalysis.VisualBasic.BoundExpressionStatement node) Line 11517 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundExpressionStatement.Accept(Microsoft.CodeAnalysis.VisualBasic.BoundTreeVisitor visitor) Line 4857 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundTreeWalkerWithStackGuard.Visit(Microsoft.CodeAnalysis.VisualBasic.BoundNode node) Line 51 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundTreeWalker.VisitSequencePoint(Microsoft.CodeAnalysis.VisualBasic.BoundSequencePoint node) Line 11274 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundSequencePoint.Accept(Microsoft.CodeAnalysis.VisualBasic.BoundTreeVisitor visitor) Line 2506 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundTreeWalkerWithStackGuard.Visit(Microsoft.CodeAnalysis.VisualBasic.BoundNode node) Line 51 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundTreeWalker.VisitList(Of Microsoft.CodeAnalysis.VisualBasic.BoundStatement)(System.Collections.Immutable.ImmutableArray(Of Microsoft.CodeAnalysis.VisualBasic.BoundStatement) list) Line 19 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundTreeWalker.VisitStatementList(Microsoft.CodeAnalysis.VisualBasic.BoundStatementList node) Line 11704 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundStatementList.Accept(Microsoft.CodeAnalysis.VisualBasic.BoundTreeVisitor visitor) Line 6618 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundTreeWalkerWithStackGuard.Visit(Microsoft.CodeAnalysis.VisualBasic.BoundNode node) Line 51 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundTreeWalker.VisitList(Of Microsoft.CodeAnalysis.VisualBasic.BoundStatement)(System.Collections.Immutable.ImmutableArray(Of Microsoft.CodeAnalysis.VisualBasic.BoundStatement) list) Line 19 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundTreeWalker.VisitBlock(Microsoft.CodeAnalysis.VisualBasic.BoundBlock node) Line 11457 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.LambdaRewriter.Analysis.VisitBlock(Microsoft.CodeAnalysis.VisualBasic.BoundBlock node) Line 282 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundBlock.Accept(Microsoft.CodeAnalysis.VisualBasic.BoundTreeVisitor visitor) Line 4361 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundTreeWalkerWithStackGuard.Visit(Microsoft.CodeAnalysis.VisualBasic.BoundNode node) Line 51 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundTreeWalker.VisitList(Of Microsoft.CodeAnalysis.VisualBasic.BoundStatement)(System.Collections.Immutable.ImmutableArray(Of Microsoft.CodeAnalysis.VisualBasic.BoundStatement) list) Line 19 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundTreeWalker.VisitBlock(Microsoft.CodeAnalysis.VisualBasic.BoundBlock node) Line 11457 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.LambdaRewriter.Analysis.VisitBlock(Microsoft.CodeAnalysis.VisualBasic.BoundBlock node) Line 282 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundBlock.Accept(Microsoft.CodeAnalysis.VisualBasic.BoundTreeVisitor visitor) Line 4361 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundTreeWalkerWithStackGuard.Visit(Microsoft.CodeAnalysis.VisualBasic.BoundNode node) Line 51 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundTreeWalker.VisitList(Of Microsoft.CodeAnalysis.VisualBasic.BoundStatement)(System.Collections.Immutable.ImmutableArray(Of Microsoft.CodeAnalysis.VisualBasic.BoundStatement) list) Line 19 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundTreeWalker.VisitBlock(Microsoft.CodeAnalysis.VisualBasic.BoundBlock node) Line 11457 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.LambdaRewriter.Analysis.VisitBlock(Microsoft.CodeAnalysis.VisualBasic.BoundBlock node) Line 282 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundBlock.Accept(Microsoft.CodeAnalysis.VisualBasic.BoundTreeVisitor visitor) Line 4361 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundTreeWalkerWithStackGuard.Visit(Microsoft.CodeAnalysis.VisualBasic.BoundNode node) Line 51 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundTreeWalker.VisitList(Of Microsoft.CodeAnalysis.VisualBasic.BoundStatement)(System.Collections.Immutable.ImmutableArray(Of Microsoft.CodeAnalysis.VisualBasic.BoundStatement) list) Line 19 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundTreeWalker.VisitBlock(Microsoft.CodeAnalysis.VisualBasic.BoundBlock node) Line 11457 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.LambdaRewriter.Analysis.VisitBlock(Microsoft.CodeAnalysis.VisualBasic.BoundBlock node) Line 282 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundBlock.Accept(Microsoft.CodeAnalysis.VisualBasic.BoundTreeVisitor visitor) Line 4361 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundTreeWalkerWithStackGuard.Visit(Microsoft.CodeAnalysis.VisualBasic.BoundNode node) Line 51 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundTreeWalker.VisitList(Of Microsoft.CodeAnalysis.VisualBasic.BoundStatement)(System.Collections.Immutable.ImmutableArray(Of Microsoft.CodeAnalysis.VisualBasic.BoundStatement) list) Line 19 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundTreeWalker.VisitBlock(Microsoft.CodeAnalysis.VisualBasic.BoundBlock node) Line 11457 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.LambdaRewriter.Analysis.VisitBlock(Microsoft.CodeAnalysis.VisualBasic.BoundBlock node) Line 282 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundBlock.Accept(Microsoft.CodeAnalysis.VisualBasic.BoundTreeVisitor visitor) Line 4361 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundTreeWalkerWithStackGuard.Visit(Microsoft.CodeAnalysis.VisualBasic.BoundNode node) Line 51 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundTreeWalker.VisitList(Of Microsoft.CodeAnalysis.VisualBasic.BoundStatement)(System.Collections.Immutable.ImmutableArray(Of Microsoft.CodeAnalysis.VisualBasic.BoundStatement) list) Line 19 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundTreeWalker.VisitBlock(Microsoft.CodeAnalysis.VisualBasic.BoundBlock node) Line 11457 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.LambdaRewriter.Analysis.VisitBlock(Microsoft.CodeAnalysis.VisualBasic.BoundBlock node) Line 282 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundBlock.Accept(Microsoft.CodeAnalysis.VisualBasic.BoundTreeVisitor visitor) Line 4361 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundTreeWalkerWithStackGuard.Visit(Microsoft.CodeAnalysis.VisualBasic.BoundNode node) Line 51 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundTreeWalker.VisitList(Of Microsoft.CodeAnalysis.VisualBasic.BoundStatement)(System.Collections.Immutable.ImmutableArray(Of Microsoft.CodeAnalysis.VisualBasic.BoundStatement) list) Line 19 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundTreeWalker.VisitBlock(Microsoft.CodeAnalysis.VisualBasic.BoundBlock node) Line 11457 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.LambdaRewriter.Analysis.VisitBlock(Microsoft.CodeAnalysis.VisualBasic.BoundBlock node) Line 282 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundBlock.Accept(Microsoft.CodeAnalysis.VisualBasic.BoundTreeVisitor visitor) Line 4361 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundTreeWalkerWithStackGuard.Visit(Microsoft.CodeAnalysis.VisualBasic.BoundNode node) Line 51 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.LambdaRewriter.Analysis.Analyze(Microsoft.CodeAnalysis.VisualBasic.BoundNode node) Line 159 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.LambdaRewriter.Analysis.AnalyzeMethodBody(Microsoft.CodeAnalysis.VisualBasic.BoundBlock node, Microsoft.CodeAnalysis.VisualBasic.Symbols.MethodSymbol method, System.Collections.Generic.ISet(Of Microsoft.CodeAnalysis.VisualBasic.Symbol) symbolsCapturedWithoutCtor, Microsoft.CodeAnalysis.VisualBasic.BindingDiagnosticBag diagnostics) Line 139 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.LambdaRewriter.Rewrite(Microsoft.CodeAnalysis.VisualBasic.BoundBlock node, Microsoft.CodeAnalysis.VisualBasic.Symbols.MethodSymbol method, Integer methodOrdinal, Microsoft.CodeAnalysis.PooledObjects.ArrayBuilder(Of Microsoft.CodeAnalysis.CodeGen.LambdaDebugInfo) lambdaDebugInfoBuilder, Microsoft.CodeAnalysis.PooledObjects.ArrayBuilder(Of Microsoft.CodeAnalysis.CodeGen.ClosureDebugInfo) closureDebugInfoBuilder, Integer delegateRelaxationIdDispenser, Microsoft.CodeAnalysis.CodeGen.VariableSlotAllocator slotAllocatorOpt, Microsoft.CodeAnalysis.VisualBasic.TypeCompilationState CompilationState, System.Collections.Generic.ISet(Of Microsoft.CodeAnalysis.VisualBasic.Symbol) symbolsCapturedWithoutCopyCtor, Microsoft.CodeAnalysis.VisualBasic.BindingDiagnosticBag diagnostics, System.Collections.Generic.HashSet(Of Microsoft.CodeAnalysis.VisualBasic.BoundNode) rewrittenNodes) Line 160 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.Rewriter.LowerBodyOrInitializer(Microsoft.CodeAnalysis.VisualBasic.Symbols.MethodSymbol method, Integer methodOrdinal, Microsoft.CodeAnalysis.VisualBasic.BoundBlock body, Microsoft.CodeAnalysis.VisualBasic.SynthesizedSubmissionFields previousSubmissionFields, Microsoft.CodeAnalysis.VisualBasic.TypeCompilationState compilationState, Boolean instrumentForDynamicAnalysis, System.Collections.Immutable.ImmutableArray(Of Microsoft.CodeAnalysis.CodeGen.SourceSpan) dynamicAnalysisSpans, Microsoft.CodeAnalysis.CodeGen.DebugDocumentProvider debugDocumentProvider, Microsoft.CodeAnalysis.VisualBasic.BindingDiagnosticBag diagnostics, Microsoft.CodeAnalysis.CodeGen.VariableSlotAllocator lazyVariableSlotAllocator, Microsoft.CodeAnalysis.PooledObjects.ArrayBuilder(Of Microsoft.CodeAnalysis.CodeGen.LambdaDebugInfo) lambdaDebugInfoBuilder, Microsoft.CodeAnalysis.PooledObjects.ArrayBuilder(Of Microsoft.CodeAnalysis.CodeGen.ClosureDebugInfo) closureDebugInfoBuilder, Integer delegateRelaxationIdDispenser, Microsoft.CodeAnalysis.VisualBasic.StateMachineTypeSymbol stateMachineTypeOpt, Boolean allowOmissionOfConditionalCalls, Boolean isBodySynthesized) Line 89 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.MethodCompiler.LowerAndEmitMethod(Microsoft.CodeAnalysis.VisualBasic.Symbols.MethodSymbol method, Integer methodOrdinal, Microsoft.CodeAnalysis.VisualBasic.BoundBlock block, Microsoft.CodeAnalysis.VisualBasic.Binder binderOpt, Microsoft.CodeAnalysis.VisualBasic.TypeCompilationState compilationState, Microsoft.CodeAnalysis.VisualBasic.BindingDiagnosticBag diagsForCurrentMethod, Microsoft.CodeAnalysis.VisualBasic.Binder.ProcessedFieldOrPropertyInitializers processedInitializers, Microsoft.CodeAnalysis.VisualBasic.SynthesizedSubmissionFields previousSubmissionFields, Microsoft.CodeAnalysis.VisualBasic.Symbols.MethodSymbol constructorToInject, Integer delegateRelaxationIdDispenser) Line 1457 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.MethodCompiler.CompileMethod(Microsoft.CodeAnalysis.VisualBasic.Symbols.MethodSymbol method, Integer methodOrdinal, Integer withEventPropertyIdDispenser, Integer delegateRelaxationIdDispenser, System.Predicate(Of Microsoft.CodeAnalysis.VisualBasic.Symbol) filter, Microsoft.CodeAnalysis.VisualBasic.TypeCompilationState compilationState, Microsoft.CodeAnalysis.VisualBasic.Binder.ProcessedFieldOrPropertyInitializers processedInitializers, Microsoft.CodeAnalysis.VisualBasic.Binder containingTypeBinder, Microsoft.CodeAnalysis.VisualBasic.SynthesizedSubmissionFields previousSubmissionFields, Microsoft.CodeAnalysis.VisualBasic.Symbols.MethodSymbol referencedConstructor) Line 1272 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.MethodCompiler.CompileNamedType(Microsoft.CodeAnalysis.VisualBasic.Symbols.NamedTypeSymbol containingType, System.Predicate(Of Microsoft.CodeAnalysis.VisualBasic.Symbol) filter) Line 690 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.MethodCompiler.VisitNamedType(Microsoft.CodeAnalysis.VisualBasic.Symbols.NamedTypeSymbol symbol) Line 522 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.Symbols.NamedTypeSymbol.Accept(Microsoft.CodeAnalysis.VisualBasic.VisualBasicSymbolVisitor visitor) Line 1251 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.MethodCompiler.CompileNamespace(Microsoft.CodeAnalysis.VisualBasic.Symbols.NamespaceSymbol symbol) Line 510 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.MethodCompiler.VisitNamespace(Microsoft.CodeAnalysis.VisualBasic.Symbols.NamespaceSymbol symbol) Line 490 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.Symbols.NamespaceSymbol.Accept(Microsoft.CodeAnalysis.VisualBasic.VisualBasicSymbolVisitor visitor) Line 566 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.MethodCompiler.CompileMethodBodies(Microsoft.CodeAnalysis.VisualBasic.VisualBasicCompilation compilation, Microsoft.CodeAnalysis.VisualBasic.Emit.PEModuleBuilder moduleBeingBuiltOpt, Boolean emittingPdb, Boolean emitTestCoverageData, Boolean hasDeclarationErrors, System.Predicate(Of Microsoft.CodeAnalysis.VisualBasic.Symbol) filter, Microsoft.CodeAnalysis.VisualBasic.BindingDiagnosticBag diagnostics, System.Threading.CancellationToken cancellationToken) Line 246 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.VisualBasicCompilation.CompileMethods(Microsoft.CodeAnalysis.Emit.CommonPEModuleBuilder moduleBuilder, Boolean emittingPdb, Boolean emitMetadataOnly, Boolean emitTestCoverageData, Microsoft.CodeAnalysis.DiagnosticBag diagnostics, System.Predicate(Of Microsoft.CodeAnalysis.Symbols.ISymbolInternal) filterOpt, System.Threading.CancellationToken cancellationToken) Line 2349 Basic
Microsoft.CodeAnalysis.dll!Microsoft.CodeAnalysis.Compilation.Emit(System.IO.Stream peStream, System.IO.Stream metadataPEStream, System.IO.Stream pdbStream, System.IO.Stream xmlDocumentationStream, System.IO.Stream win32Resources, System.Collections.Generic.IEnumerable<Microsoft.CodeAnalysis.ResourceDescription> manifestResources, Microsoft.CodeAnalysis.Emit.EmitOptions options, Microsoft.CodeAnalysis.IMethodSymbol debugEntryPoint, System.IO.Stream sourceLinkStream, System.Collections.Generic.IEnumerable<Microsoft.CodeAnalysis.EmbeddedText> embeddedTexts, Microsoft.CodeAnalysis.CodeGen.CompilationTestData testData, System.Threading.CancellationToken cancellationToken) Line 2497 C#
Microsoft.CodeAnalysis.dll!Microsoft.CodeAnalysis.Compilation.Emit(System.IO.Stream peStream, System.IO.Stream pdbStream, System.IO.Stream xmlDocumentationStream, System.IO.Stream win32Resources, System.Collections.Generic.IEnumerable<Microsoft.CodeAnalysis.ResourceDescription> manifestResources, Microsoft.CodeAnalysis.Emit.EmitOptions options, Microsoft.CodeAnalysis.IMethodSymbol debugEntryPoint, System.IO.Stream sourceLinkStream, System.Collections.Generic.IEnumerable<Microsoft.CodeAnalysis.EmbeddedText> embeddedTexts, System.IO.Stream metadataPEStream, System.Threading.CancellationToken cancellationToken) Line 2441 C#
Roslyn.Test.Utilities.dll!Microsoft.CodeAnalysis.DiagnosticExtensions.GetEmitDiagnostics<Microsoft.CodeAnalysis.VisualBasic.VisualBasicCompilation>(Microsoft.CodeAnalysis.VisualBasic.VisualBasicCompilation c, Microsoft.CodeAnalysis.Emit.EmitOptions options, System.Collections.Generic.IEnumerable<Microsoft.CodeAnalysis.ResourceDescription> manifestResources) Line 376 C#
Roslyn.Test.Utilities.dll!Microsoft.CodeAnalysis.DiagnosticExtensions.GetEmitDiagnostics<Microsoft.CodeAnalysis.VisualBasic.VisualBasicCompilation>(Microsoft.CodeAnalysis.VisualBasic.VisualBasicCompilation c) Line 388 C#
Microsoft.CodeAnalysis.VisualBasic.Test.Utilities.dll!Microsoft.CodeAnalysis.VisualBasic.UnitTests.CompilationUtils.VerifyUsedAssemblyReferences(System.Func(Of Microsoft.CodeAnalysis.VisualBasic.VisualBasicCompilation) createCompilationLambda) Line 69 Basic
Microsoft.CodeAnalysis.VisualBasic.Test.Utilities.dll!Microsoft.CodeAnalysis.VisualBasic.UnitTests.CompilationUtils.CreateEmptyCompilation(Microsoft.CodeAnalysis.VisualBasic.UnitTests.BasicTestSource source, System.Collections.Generic.IEnumerable(Of Microsoft.CodeAnalysis.MetadataReference) references, Microsoft.CodeAnalysis.VisualBasic.VisualBasicCompilationOptions options, Microsoft.CodeAnalysis.VisualBasic.VisualBasicParseOptions parseOptions, String assemblyName) Line 58 Basic
Microsoft.CodeAnalysis.VisualBasic.Semantic.UnitTests.dll!Microsoft.CodeAnalysis.VisualBasic.UnitTests.FlowTestBase.CompileAndGetModelAndSpan(System.Xml.Linq.XElement program, System.Collections.Generic.List(Of Microsoft.CodeAnalysis.VisualBasic.VisualBasicSyntaxNode) startNodes, System.Collections.Generic.List(Of Microsoft.CodeAnalysis.VisualBasic.VisualBasicSyntaxNode) endNodes, System.Xml.Linq.XCData ilSource, System.Xml.Linq.XElement errors, Microsoft.CodeAnalysis.VisualBasic.VisualBasicParseOptions parseOptions) Line 91 Basic
Microsoft.CodeAnalysis.VisualBasic.Semantic.UnitTests.dll!Microsoft.CodeAnalysis.VisualBasic.UnitTests.FlowTestBase.CompileAndGetModelAndSpan(Of Microsoft.CodeAnalysis.DataFlowAnalysis)(System.Xml.Linq.XElement program, System.Func(Of Microsoft.CodeAnalysis.SemanticModel, System.Collections.Generic.List(Of Microsoft.CodeAnalysis.VisualBasic.VisualBasicSyntaxNode), System.Collections.Generic.List(Of Microsoft.CodeAnalysis.VisualBasic.VisualBasicSyntaxNode), Microsoft.CodeAnalysis.DataFlowAnalysis) analysisDelegate, System.Xml.Linq.XCData ilSource, System.Xml.Linq.XElement errors) Line 74 Basic
Microsoft.CodeAnalysis.VisualBasic.Semantic.UnitTests.dll!Microsoft.CodeAnalysis.VisualBasic.UnitTests.FlowTestBase.CompileAndAnalyzeDataFlow(System.Xml.Linq.XElement program, System.Xml.Linq.XCData ilSource, System.Xml.Linq.XElement errors) Line 64 Basic
Microsoft.CodeAnalysis.VisualBasic.Semantic.UnitTests.dll!Microsoft.CodeAnalysis.VisualBasic.UnitTests.FlowAnalysisTests.WithStatement_Expression_LValue_4d() Line 8827 Basic
```
The scenario is taken from ```Microsoft.CodeAnalysis.VisualBasic.UnitTests.FlowAnalysisTests.WithStatement_Expression_LValue_4d``` unit-test. It will be disabled in dotnet/features/UsedAssemblyReferences branch because it blocks the feature test hook.
|
True
|
An ExceptionUtilities.UnexpectedValue is throw by VB compiler -
Compile the following code as a library:
```
Imports System
Structure SSSS3
Public A As String
Public B As Integer
End Structure
Structure SSSS2
Public S3 As SSSS3
End Structure
Structure SSSS
Public S2 As SSSS2
End Structure
Structure SSS
Public S As SSSS
End Structure
Class Clazz
Sub TEST()
Dim x As New SSS()
With x.S
With .S2
With .S3
Dim s As Action = Sub()
.A = ""
End Sub
End With
End With
End With
x.ToString()
End Sub
End Class
```
Observed: Compiler crashes
Expected: Success, it looks like the native compiler succeeds.
```
Microsoft.CodeAnalysis.dll!Roslyn.Utilities.ExceptionUtilities.UnexpectedValue(object o) Line 20 C#
> Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.LambdaRewriter.Analysis.VerifyCaptured(Microsoft.CodeAnalysis.VisualBasic.Symbol variableOrParameter, Microsoft.CodeAnalysis.SyntaxNode syntax) Line 451 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.LambdaRewriter.Analysis.ReferenceVariable(Microsoft.CodeAnalysis.VisualBasic.Symbol variableOrParameter, Microsoft.CodeAnalysis.SyntaxNode syntax) Line 436 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.LambdaRewriter.Analysis.VisitLocal(Microsoft.CodeAnalysis.VisualBasic.BoundLocal node) Line 485 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundLocal.Accept(Microsoft.CodeAnalysis.VisualBasic.BoundTreeVisitor visitor) Line 6167 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundTreeWalkerWithStackGuard.VisitExpressionWithoutStackGuard(Microsoft.CodeAnalysis.VisualBasic.BoundExpression node) Line 59 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundTreeVisitor.VisitExpressionWithStackGuard(Integer recursionDepth, Microsoft.CodeAnalysis.VisualBasic.BoundExpression node) Line 184 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundTreeWalkerWithStackGuard.Visit(Microsoft.CodeAnalysis.VisualBasic.BoundNode node) Line 48 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundTreeWalker.VisitFieldAccess(Microsoft.CodeAnalysis.VisualBasic.BoundFieldAccess node) Line 11441 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundFieldAccess.Accept(Microsoft.CodeAnalysis.VisualBasic.BoundTreeVisitor visitor) Line 4170 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundTreeWalkerWithStackGuard.VisitExpressionWithoutStackGuard(Microsoft.CodeAnalysis.VisualBasic.BoundExpression node) Line 59 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundTreeVisitor.VisitExpressionWithStackGuard(Integer recursionDepth, Microsoft.CodeAnalysis.VisualBasic.BoundExpression node) Line 184 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundTreeWalkerWithStackGuard.Visit(Microsoft.CodeAnalysis.VisualBasic.BoundNode node) Line 48 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundTreeWalker.VisitFieldAccess(Microsoft.CodeAnalysis.VisualBasic.BoundFieldAccess node) Line 11441 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundFieldAccess.Accept(Microsoft.CodeAnalysis.VisualBasic.BoundTreeVisitor visitor) Line 4170 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundTreeWalkerWithStackGuard.VisitExpressionWithoutStackGuard(Microsoft.CodeAnalysis.VisualBasic.BoundExpression node) Line 59 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundTreeVisitor.VisitExpressionWithStackGuard(Integer recursionDepth, Microsoft.CodeAnalysis.VisualBasic.BoundExpression node) Line 184 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundTreeWalkerWithStackGuard.Visit(Microsoft.CodeAnalysis.VisualBasic.BoundNode node) Line 48 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundTreeWalker.VisitAssignmentOperator(Microsoft.CodeAnalysis.VisualBasic.BoundAssignmentOperator node) Line 11203 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundAssignmentOperator.Accept(Microsoft.CodeAnalysis.VisualBasic.BoundTreeVisitor visitor) Line 1786 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundTreeWalkerWithStackGuard.VisitExpressionWithoutStackGuard(Microsoft.CodeAnalysis.VisualBasic.BoundExpression node) Line 59 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundTreeVisitor.VisitExpressionWithStackGuard(Integer recursionDepth, Microsoft.CodeAnalysis.VisualBasic.BoundExpression node) Line 184 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundTreeWalkerWithStackGuard.Visit(Microsoft.CodeAnalysis.VisualBasic.BoundNode node) Line 48 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundTreeWalker.VisitExpressionStatement(Microsoft.CodeAnalysis.VisualBasic.BoundExpressionStatement node) Line 11517 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundExpressionStatement.Accept(Microsoft.CodeAnalysis.VisualBasic.BoundTreeVisitor visitor) Line 4857 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundTreeWalkerWithStackGuard.Visit(Microsoft.CodeAnalysis.VisualBasic.BoundNode node) Line 51 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundTreeWalker.VisitSequencePoint(Microsoft.CodeAnalysis.VisualBasic.BoundSequencePoint node) Line 11274 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundSequencePoint.Accept(Microsoft.CodeAnalysis.VisualBasic.BoundTreeVisitor visitor) Line 2506 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundTreeWalkerWithStackGuard.Visit(Microsoft.CodeAnalysis.VisualBasic.BoundNode node) Line 51 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundTreeWalker.VisitList(Of Microsoft.CodeAnalysis.VisualBasic.BoundStatement)(System.Collections.Immutable.ImmutableArray(Of Microsoft.CodeAnalysis.VisualBasic.BoundStatement) list) Line 19 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundTreeWalker.VisitBlock(Microsoft.CodeAnalysis.VisualBasic.BoundBlock node) Line 11457 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.LambdaRewriter.Analysis.VisitLambda(Microsoft.CodeAnalysis.VisualBasic.BoundLambda node, Boolean convertToExpressionTree) Line 326 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.LambdaRewriter.Analysis.VisitConversion(Microsoft.CodeAnalysis.VisualBasic.BoundConversion conversion) Line 366 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundConversion.Accept(Microsoft.CodeAnalysis.VisualBasic.BoundTreeVisitor visitor) Line 2123 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundTreeWalkerWithStackGuard.VisitExpressionWithoutStackGuard(Microsoft.CodeAnalysis.VisualBasic.BoundExpression node) Line 59 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundTreeVisitor.VisitExpressionWithStackGuard(Integer recursionDepth, Microsoft.CodeAnalysis.VisualBasic.BoundExpression node) Line 184 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundTreeWalkerWithStackGuard.Visit(Microsoft.CodeAnalysis.VisualBasic.BoundNode node) Line 48 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundTreeWalker.VisitAssignmentOperator(Microsoft.CodeAnalysis.VisualBasic.BoundAssignmentOperator node) Line 11205 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundAssignmentOperator.Accept(Microsoft.CodeAnalysis.VisualBasic.BoundTreeVisitor visitor) Line 1786 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundTreeWalkerWithStackGuard.VisitExpressionWithoutStackGuard(Microsoft.CodeAnalysis.VisualBasic.BoundExpression node) Line 59 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundTreeVisitor.VisitExpressionWithStackGuard(Microsoft.CodeAnalysis.VisualBasic.BoundExpression node) Line 203 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundTreeVisitor.VisitExpressionWithStackGuard(Integer recursionDepth, Microsoft.CodeAnalysis.VisualBasic.BoundExpression node) Line 186 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundTreeWalkerWithStackGuard.Visit(Microsoft.CodeAnalysis.VisualBasic.BoundNode node) Line 48 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundTreeWalker.VisitExpressionStatement(Microsoft.CodeAnalysis.VisualBasic.BoundExpressionStatement node) Line 11517 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundExpressionStatement.Accept(Microsoft.CodeAnalysis.VisualBasic.BoundTreeVisitor visitor) Line 4857 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundTreeWalkerWithStackGuard.Visit(Microsoft.CodeAnalysis.VisualBasic.BoundNode node) Line 51 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundTreeWalker.VisitSequencePoint(Microsoft.CodeAnalysis.VisualBasic.BoundSequencePoint node) Line 11274 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundSequencePoint.Accept(Microsoft.CodeAnalysis.VisualBasic.BoundTreeVisitor visitor) Line 2506 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundTreeWalkerWithStackGuard.Visit(Microsoft.CodeAnalysis.VisualBasic.BoundNode node) Line 51 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundTreeWalker.VisitList(Of Microsoft.CodeAnalysis.VisualBasic.BoundStatement)(System.Collections.Immutable.ImmutableArray(Of Microsoft.CodeAnalysis.VisualBasic.BoundStatement) list) Line 19 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundTreeWalker.VisitStatementList(Microsoft.CodeAnalysis.VisualBasic.BoundStatementList node) Line 11704 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundStatementList.Accept(Microsoft.CodeAnalysis.VisualBasic.BoundTreeVisitor visitor) Line 6618 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundTreeWalkerWithStackGuard.Visit(Microsoft.CodeAnalysis.VisualBasic.BoundNode node) Line 51 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundTreeWalker.VisitList(Of Microsoft.CodeAnalysis.VisualBasic.BoundStatement)(System.Collections.Immutable.ImmutableArray(Of Microsoft.CodeAnalysis.VisualBasic.BoundStatement) list) Line 19 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundTreeWalker.VisitBlock(Microsoft.CodeAnalysis.VisualBasic.BoundBlock node) Line 11457 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.LambdaRewriter.Analysis.VisitBlock(Microsoft.CodeAnalysis.VisualBasic.BoundBlock node) Line 282 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundBlock.Accept(Microsoft.CodeAnalysis.VisualBasic.BoundTreeVisitor visitor) Line 4361 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundTreeWalkerWithStackGuard.Visit(Microsoft.CodeAnalysis.VisualBasic.BoundNode node) Line 51 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundTreeWalker.VisitList(Of Microsoft.CodeAnalysis.VisualBasic.BoundStatement)(System.Collections.Immutable.ImmutableArray(Of Microsoft.CodeAnalysis.VisualBasic.BoundStatement) list) Line 19 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundTreeWalker.VisitBlock(Microsoft.CodeAnalysis.VisualBasic.BoundBlock node) Line 11457 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.LambdaRewriter.Analysis.VisitBlock(Microsoft.CodeAnalysis.VisualBasic.BoundBlock node) Line 282 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundBlock.Accept(Microsoft.CodeAnalysis.VisualBasic.BoundTreeVisitor visitor) Line 4361 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundTreeWalkerWithStackGuard.Visit(Microsoft.CodeAnalysis.VisualBasic.BoundNode node) Line 51 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundTreeWalker.VisitList(Of Microsoft.CodeAnalysis.VisualBasic.BoundStatement)(System.Collections.Immutable.ImmutableArray(Of Microsoft.CodeAnalysis.VisualBasic.BoundStatement) list) Line 19 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundTreeWalker.VisitBlock(Microsoft.CodeAnalysis.VisualBasic.BoundBlock node) Line 11457 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.LambdaRewriter.Analysis.VisitBlock(Microsoft.CodeAnalysis.VisualBasic.BoundBlock node) Line 282 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundBlock.Accept(Microsoft.CodeAnalysis.VisualBasic.BoundTreeVisitor visitor) Line 4361 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundTreeWalkerWithStackGuard.Visit(Microsoft.CodeAnalysis.VisualBasic.BoundNode node) Line 51 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundTreeWalker.VisitList(Of Microsoft.CodeAnalysis.VisualBasic.BoundStatement)(System.Collections.Immutable.ImmutableArray(Of Microsoft.CodeAnalysis.VisualBasic.BoundStatement) list) Line 19 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundTreeWalker.VisitBlock(Microsoft.CodeAnalysis.VisualBasic.BoundBlock node) Line 11457 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.LambdaRewriter.Analysis.VisitBlock(Microsoft.CodeAnalysis.VisualBasic.BoundBlock node) Line 282 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundBlock.Accept(Microsoft.CodeAnalysis.VisualBasic.BoundTreeVisitor visitor) Line 4361 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundTreeWalkerWithStackGuard.Visit(Microsoft.CodeAnalysis.VisualBasic.BoundNode node) Line 51 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundTreeWalker.VisitList(Of Microsoft.CodeAnalysis.VisualBasic.BoundStatement)(System.Collections.Immutable.ImmutableArray(Of Microsoft.CodeAnalysis.VisualBasic.BoundStatement) list) Line 19 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundTreeWalker.VisitBlock(Microsoft.CodeAnalysis.VisualBasic.BoundBlock node) Line 11457 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.LambdaRewriter.Analysis.VisitBlock(Microsoft.CodeAnalysis.VisualBasic.BoundBlock node) Line 282 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundBlock.Accept(Microsoft.CodeAnalysis.VisualBasic.BoundTreeVisitor visitor) Line 4361 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundTreeWalkerWithStackGuard.Visit(Microsoft.CodeAnalysis.VisualBasic.BoundNode node) Line 51 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundTreeWalker.VisitList(Of Microsoft.CodeAnalysis.VisualBasic.BoundStatement)(System.Collections.Immutable.ImmutableArray(Of Microsoft.CodeAnalysis.VisualBasic.BoundStatement) list) Line 19 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundTreeWalker.VisitBlock(Microsoft.CodeAnalysis.VisualBasic.BoundBlock node) Line 11457 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.LambdaRewriter.Analysis.VisitBlock(Microsoft.CodeAnalysis.VisualBasic.BoundBlock node) Line 282 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundBlock.Accept(Microsoft.CodeAnalysis.VisualBasic.BoundTreeVisitor visitor) Line 4361 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundTreeWalkerWithStackGuard.Visit(Microsoft.CodeAnalysis.VisualBasic.BoundNode node) Line 51 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundTreeWalker.VisitList(Of Microsoft.CodeAnalysis.VisualBasic.BoundStatement)(System.Collections.Immutable.ImmutableArray(Of Microsoft.CodeAnalysis.VisualBasic.BoundStatement) list) Line 19 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundTreeWalker.VisitBlock(Microsoft.CodeAnalysis.VisualBasic.BoundBlock node) Line 11457 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.LambdaRewriter.Analysis.VisitBlock(Microsoft.CodeAnalysis.VisualBasic.BoundBlock node) Line 282 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundBlock.Accept(Microsoft.CodeAnalysis.VisualBasic.BoundTreeVisitor visitor) Line 4361 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.BoundTreeWalkerWithStackGuard.Visit(Microsoft.CodeAnalysis.VisualBasic.BoundNode node) Line 51 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.LambdaRewriter.Analysis.Analyze(Microsoft.CodeAnalysis.VisualBasic.BoundNode node) Line 159 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.LambdaRewriter.Analysis.AnalyzeMethodBody(Microsoft.CodeAnalysis.VisualBasic.BoundBlock node, Microsoft.CodeAnalysis.VisualBasic.Symbols.MethodSymbol method, System.Collections.Generic.ISet(Of Microsoft.CodeAnalysis.VisualBasic.Symbol) symbolsCapturedWithoutCtor, Microsoft.CodeAnalysis.VisualBasic.BindingDiagnosticBag diagnostics) Line 139 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.LambdaRewriter.Rewrite(Microsoft.CodeAnalysis.VisualBasic.BoundBlock node, Microsoft.CodeAnalysis.VisualBasic.Symbols.MethodSymbol method, Integer methodOrdinal, Microsoft.CodeAnalysis.PooledObjects.ArrayBuilder(Of Microsoft.CodeAnalysis.CodeGen.LambdaDebugInfo) lambdaDebugInfoBuilder, Microsoft.CodeAnalysis.PooledObjects.ArrayBuilder(Of Microsoft.CodeAnalysis.CodeGen.ClosureDebugInfo) closureDebugInfoBuilder, Integer delegateRelaxationIdDispenser, Microsoft.CodeAnalysis.CodeGen.VariableSlotAllocator slotAllocatorOpt, Microsoft.CodeAnalysis.VisualBasic.TypeCompilationState CompilationState, System.Collections.Generic.ISet(Of Microsoft.CodeAnalysis.VisualBasic.Symbol) symbolsCapturedWithoutCopyCtor, Microsoft.CodeAnalysis.VisualBasic.BindingDiagnosticBag diagnostics, System.Collections.Generic.HashSet(Of Microsoft.CodeAnalysis.VisualBasic.BoundNode) rewrittenNodes) Line 160 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.Rewriter.LowerBodyOrInitializer(Microsoft.CodeAnalysis.VisualBasic.Symbols.MethodSymbol method, Integer methodOrdinal, Microsoft.CodeAnalysis.VisualBasic.BoundBlock body, Microsoft.CodeAnalysis.VisualBasic.SynthesizedSubmissionFields previousSubmissionFields, Microsoft.CodeAnalysis.VisualBasic.TypeCompilationState compilationState, Boolean instrumentForDynamicAnalysis, System.Collections.Immutable.ImmutableArray(Of Microsoft.CodeAnalysis.CodeGen.SourceSpan) dynamicAnalysisSpans, Microsoft.CodeAnalysis.CodeGen.DebugDocumentProvider debugDocumentProvider, Microsoft.CodeAnalysis.VisualBasic.BindingDiagnosticBag diagnostics, Microsoft.CodeAnalysis.CodeGen.VariableSlotAllocator lazyVariableSlotAllocator, Microsoft.CodeAnalysis.PooledObjects.ArrayBuilder(Of Microsoft.CodeAnalysis.CodeGen.LambdaDebugInfo) lambdaDebugInfoBuilder, Microsoft.CodeAnalysis.PooledObjects.ArrayBuilder(Of Microsoft.CodeAnalysis.CodeGen.ClosureDebugInfo) closureDebugInfoBuilder, Integer delegateRelaxationIdDispenser, Microsoft.CodeAnalysis.VisualBasic.StateMachineTypeSymbol stateMachineTypeOpt, Boolean allowOmissionOfConditionalCalls, Boolean isBodySynthesized) Line 89 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.MethodCompiler.LowerAndEmitMethod(Microsoft.CodeAnalysis.VisualBasic.Symbols.MethodSymbol method, Integer methodOrdinal, Microsoft.CodeAnalysis.VisualBasic.BoundBlock block, Microsoft.CodeAnalysis.VisualBasic.Binder binderOpt, Microsoft.CodeAnalysis.VisualBasic.TypeCompilationState compilationState, Microsoft.CodeAnalysis.VisualBasic.BindingDiagnosticBag diagsForCurrentMethod, Microsoft.CodeAnalysis.VisualBasic.Binder.ProcessedFieldOrPropertyInitializers processedInitializers, Microsoft.CodeAnalysis.VisualBasic.SynthesizedSubmissionFields previousSubmissionFields, Microsoft.CodeAnalysis.VisualBasic.Symbols.MethodSymbol constructorToInject, Integer delegateRelaxationIdDispenser) Line 1457 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.MethodCompiler.CompileMethod(Microsoft.CodeAnalysis.VisualBasic.Symbols.MethodSymbol method, Integer methodOrdinal, Integer withEventPropertyIdDispenser, Integer delegateRelaxationIdDispenser, System.Predicate(Of Microsoft.CodeAnalysis.VisualBasic.Symbol) filter, Microsoft.CodeAnalysis.VisualBasic.TypeCompilationState compilationState, Microsoft.CodeAnalysis.VisualBasic.Binder.ProcessedFieldOrPropertyInitializers processedInitializers, Microsoft.CodeAnalysis.VisualBasic.Binder containingTypeBinder, Microsoft.CodeAnalysis.VisualBasic.SynthesizedSubmissionFields previousSubmissionFields, Microsoft.CodeAnalysis.VisualBasic.Symbols.MethodSymbol referencedConstructor) Line 1272 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.MethodCompiler.CompileNamedType(Microsoft.CodeAnalysis.VisualBasic.Symbols.NamedTypeSymbol containingType, System.Predicate(Of Microsoft.CodeAnalysis.VisualBasic.Symbol) filter) Line 690 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.MethodCompiler.VisitNamedType(Microsoft.CodeAnalysis.VisualBasic.Symbols.NamedTypeSymbol symbol) Line 522 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.Symbols.NamedTypeSymbol.Accept(Microsoft.CodeAnalysis.VisualBasic.VisualBasicSymbolVisitor visitor) Line 1251 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.MethodCompiler.CompileNamespace(Microsoft.CodeAnalysis.VisualBasic.Symbols.NamespaceSymbol symbol) Line 510 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.MethodCompiler.VisitNamespace(Microsoft.CodeAnalysis.VisualBasic.Symbols.NamespaceSymbol symbol) Line 490 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.Symbols.NamespaceSymbol.Accept(Microsoft.CodeAnalysis.VisualBasic.VisualBasicSymbolVisitor visitor) Line 566 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.MethodCompiler.CompileMethodBodies(Microsoft.CodeAnalysis.VisualBasic.VisualBasicCompilation compilation, Microsoft.CodeAnalysis.VisualBasic.Emit.PEModuleBuilder moduleBeingBuiltOpt, Boolean emittingPdb, Boolean emitTestCoverageData, Boolean hasDeclarationErrors, System.Predicate(Of Microsoft.CodeAnalysis.VisualBasic.Symbol) filter, Microsoft.CodeAnalysis.VisualBasic.BindingDiagnosticBag diagnostics, System.Threading.CancellationToken cancellationToken) Line 246 Basic
Microsoft.CodeAnalysis.VisualBasic.dll!Microsoft.CodeAnalysis.VisualBasic.VisualBasicCompilation.CompileMethods(Microsoft.CodeAnalysis.Emit.CommonPEModuleBuilder moduleBuilder, Boolean emittingPdb, Boolean emitMetadataOnly, Boolean emitTestCoverageData, Microsoft.CodeAnalysis.DiagnosticBag diagnostics, System.Predicate(Of Microsoft.CodeAnalysis.Symbols.ISymbolInternal) filterOpt, System.Threading.CancellationToken cancellationToken) Line 2349 Basic
Microsoft.CodeAnalysis.dll!Microsoft.CodeAnalysis.Compilation.Emit(System.IO.Stream peStream, System.IO.Stream metadataPEStream, System.IO.Stream pdbStream, System.IO.Stream xmlDocumentationStream, System.IO.Stream win32Resources, System.Collections.Generic.IEnumerable<Microsoft.CodeAnalysis.ResourceDescription> manifestResources, Microsoft.CodeAnalysis.Emit.EmitOptions options, Microsoft.CodeAnalysis.IMethodSymbol debugEntryPoint, System.IO.Stream sourceLinkStream, System.Collections.Generic.IEnumerable<Microsoft.CodeAnalysis.EmbeddedText> embeddedTexts, Microsoft.CodeAnalysis.CodeGen.CompilationTestData testData, System.Threading.CancellationToken cancellationToken) Line 2497 C#
Microsoft.CodeAnalysis.dll!Microsoft.CodeAnalysis.Compilation.Emit(System.IO.Stream peStream, System.IO.Stream pdbStream, System.IO.Stream xmlDocumentationStream, System.IO.Stream win32Resources, System.Collections.Generic.IEnumerable<Microsoft.CodeAnalysis.ResourceDescription> manifestResources, Microsoft.CodeAnalysis.Emit.EmitOptions options, Microsoft.CodeAnalysis.IMethodSymbol debugEntryPoint, System.IO.Stream sourceLinkStream, System.Collections.Generic.IEnumerable<Microsoft.CodeAnalysis.EmbeddedText> embeddedTexts, System.IO.Stream metadataPEStream, System.Threading.CancellationToken cancellationToken) Line 2441 C#
Roslyn.Test.Utilities.dll!Microsoft.CodeAnalysis.DiagnosticExtensions.GetEmitDiagnostics<Microsoft.CodeAnalysis.VisualBasic.VisualBasicCompilation>(Microsoft.CodeAnalysis.VisualBasic.VisualBasicCompilation c, Microsoft.CodeAnalysis.Emit.EmitOptions options, System.Collections.Generic.IEnumerable<Microsoft.CodeAnalysis.ResourceDescription> manifestResources) Line 376 C#
Roslyn.Test.Utilities.dll!Microsoft.CodeAnalysis.DiagnosticExtensions.GetEmitDiagnostics<Microsoft.CodeAnalysis.VisualBasic.VisualBasicCompilation>(Microsoft.CodeAnalysis.VisualBasic.VisualBasicCompilation c) Line 388 C#
Microsoft.CodeAnalysis.VisualBasic.Test.Utilities.dll!Microsoft.CodeAnalysis.VisualBasic.UnitTests.CompilationUtils.VerifyUsedAssemblyReferences(System.Func(Of Microsoft.CodeAnalysis.VisualBasic.VisualBasicCompilation) createCompilationLambda) Line 69 Basic
Microsoft.CodeAnalysis.VisualBasic.Test.Utilities.dll!Microsoft.CodeAnalysis.VisualBasic.UnitTests.CompilationUtils.CreateEmptyCompilation(Microsoft.CodeAnalysis.VisualBasic.UnitTests.BasicTestSource source, System.Collections.Generic.IEnumerable(Of Microsoft.CodeAnalysis.MetadataReference) references, Microsoft.CodeAnalysis.VisualBasic.VisualBasicCompilationOptions options, Microsoft.CodeAnalysis.VisualBasic.VisualBasicParseOptions parseOptions, String assemblyName) Line 58 Basic
Microsoft.CodeAnalysis.VisualBasic.Semantic.UnitTests.dll!Microsoft.CodeAnalysis.VisualBasic.UnitTests.FlowTestBase.CompileAndGetModelAndSpan(System.Xml.Linq.XElement program, System.Collections.Generic.List(Of Microsoft.CodeAnalysis.VisualBasic.VisualBasicSyntaxNode) startNodes, System.Collections.Generic.List(Of Microsoft.CodeAnalysis.VisualBasic.VisualBasicSyntaxNode) endNodes, System.Xml.Linq.XCData ilSource, System.Xml.Linq.XElement errors, Microsoft.CodeAnalysis.VisualBasic.VisualBasicParseOptions parseOptions) Line 91 Basic
Microsoft.CodeAnalysis.VisualBasic.Semantic.UnitTests.dll!Microsoft.CodeAnalysis.VisualBasic.UnitTests.FlowTestBase.CompileAndGetModelAndSpan(Of Microsoft.CodeAnalysis.DataFlowAnalysis)(System.Xml.Linq.XElement program, System.Func(Of Microsoft.CodeAnalysis.SemanticModel, System.Collections.Generic.List(Of Microsoft.CodeAnalysis.VisualBasic.VisualBasicSyntaxNode), System.Collections.Generic.List(Of Microsoft.CodeAnalysis.VisualBasic.VisualBasicSyntaxNode), Microsoft.CodeAnalysis.DataFlowAnalysis) analysisDelegate, System.Xml.Linq.XCData ilSource, System.Xml.Linq.XElement errors) Line 74 Basic
Microsoft.CodeAnalysis.VisualBasic.Semantic.UnitTests.dll!Microsoft.CodeAnalysis.VisualBasic.UnitTests.FlowTestBase.CompileAndAnalyzeDataFlow(System.Xml.Linq.XElement program, System.Xml.Linq.XCData ilSource, System.Xml.Linq.XElement errors) Line 64 Basic
Microsoft.CodeAnalysis.VisualBasic.Semantic.UnitTests.dll!Microsoft.CodeAnalysis.VisualBasic.UnitTests.FlowAnalysisTests.WithStatement_Expression_LValue_4d() Line 8827 Basic
```
The scenario is taken from ```Microsoft.CodeAnalysis.VisualBasic.UnitTests.FlowAnalysisTests.WithStatement_Expression_LValue_4d``` unit-test. It will be disabled in dotnet/features/UsedAssemblyReferences branch because it blocks the feature test hook.
|
reli
|
an exceptionutilities unexpectedvalue is throw by vb compiler compile the following code as a library imports system structure public a as string public b as integer end structure structure public as end structure structure ssss public as end structure structure sss public s as ssss end structure class clazz sub test dim x as new sss with x s with with dim s as action sub a end sub end with end with end with x tostring end sub end class observed compiler crashes expected success it looks like the native compiler succeeds microsoft codeanalysis dll roslyn utilities exceptionutilities unexpectedvalue object o line c microsoft codeanalysis visualbasic dll microsoft codeanalysis visualbasic lambdarewriter analysis verifycaptured microsoft codeanalysis visualbasic symbol variableorparameter microsoft codeanalysis syntaxnode syntax line basic microsoft codeanalysis visualbasic dll microsoft codeanalysis visualbasic lambdarewriter analysis referencevariable microsoft codeanalysis visualbasic symbol variableorparameter microsoft codeanalysis syntaxnode syntax line basic microsoft codeanalysis visualbasic dll microsoft codeanalysis visualbasic lambdarewriter analysis visitlocal microsoft codeanalysis visualbasic boundlocal node line basic microsoft codeanalysis visualbasic dll microsoft codeanalysis visualbasic boundlocal accept microsoft codeanalysis visualbasic boundtreevisitor visitor line basic microsoft codeanalysis visualbasic dll microsoft codeanalysis visualbasic boundtreewalkerwithstackguard visitexpressionwithoutstackguard microsoft codeanalysis visualbasic boundexpression node line basic microsoft codeanalysis visualbasic dll microsoft codeanalysis visualbasic boundtreevisitor visitexpressionwithstackguard integer recursiondepth microsoft codeanalysis visualbasic boundexpression node line basic microsoft codeanalysis visualbasic dll microsoft codeanalysis visualbasic boundtreewalkerwithstackguard visit microsoft codeanalysis visualbasic boundnode node line basic microsoft codeanalysis visualbasic dll microsoft codeanalysis visualbasic boundtreewalker visitfieldaccess microsoft codeanalysis visualbasic boundfieldaccess node line basic microsoft codeanalysis visualbasic dll microsoft codeanalysis visualbasic boundfieldaccess accept microsoft codeanalysis visualbasic boundtreevisitor visitor line basic microsoft codeanalysis visualbasic dll microsoft codeanalysis visualbasic boundtreewalkerwithstackguard visitexpressionwithoutstackguard microsoft codeanalysis visualbasic boundexpression node line basic microsoft codeanalysis visualbasic dll microsoft codeanalysis visualbasic boundtreevisitor visitexpressionwithstackguard integer recursiondepth microsoft codeanalysis visualbasic boundexpression node line basic microsoft codeanalysis visualbasic dll microsoft codeanalysis visualbasic boundtreewalkerwithstackguard visit microsoft codeanalysis visualbasic boundnode node line basic microsoft codeanalysis visualbasic dll microsoft codeanalysis visualbasic boundtreewalker visitfieldaccess microsoft codeanalysis visualbasic boundfieldaccess node line basic microsoft codeanalysis visualbasic dll microsoft codeanalysis visualbasic boundfieldaccess accept microsoft codeanalysis visualbasic boundtreevisitor visitor line basic microsoft codeanalysis visualbasic dll microsoft codeanalysis visualbasic boundtreewalkerwithstackguard visitexpressionwithoutstackguard microsoft codeanalysis visualbasic boundexpression node line basic microsoft codeanalysis visualbasic dll microsoft codeanalysis visualbasic boundtreevisitor visitexpressionwithstackguard integer recursiondepth microsoft codeanalysis visualbasic boundexpression node line basic microsoft codeanalysis visualbasic dll microsoft codeanalysis visualbasic boundtreewalkerwithstackguard visit microsoft codeanalysis visualbasic boundnode node line basic microsoft codeanalysis visualbasic dll microsoft codeanalysis visualbasic boundtreewalker visitassignmentoperator microsoft codeanalysis visualbasic boundassignmentoperator node line basic microsoft codeanalysis visualbasic dll microsoft codeanalysis visualbasic boundassignmentoperator accept microsoft codeanalysis visualbasic boundtreevisitor visitor line basic microsoft codeanalysis visualbasic dll microsoft codeanalysis visualbasic boundtreewalkerwithstackguard visitexpressionwithoutstackguard microsoft codeanalysis visualbasic boundexpression node line basic microsoft codeanalysis visualbasic dll microsoft codeanalysis visualbasic boundtreevisitor visitexpressionwithstackguard integer recursiondepth microsoft codeanalysis visualbasic boundexpression node line basic microsoft codeanalysis visualbasic dll microsoft codeanalysis visualbasic boundtreewalkerwithstackguard visit microsoft codeanalysis visualbasic boundnode node line basic microsoft codeanalysis visualbasic dll microsoft codeanalysis visualbasic boundtreewalker visitexpressionstatement microsoft codeanalysis visualbasic boundexpressionstatement node line basic microsoft codeanalysis visualbasic dll microsoft codeanalysis visualbasic boundexpressionstatement accept microsoft codeanalysis visualbasic boundtreevisitor visitor line basic microsoft codeanalysis visualbasic dll microsoft codeanalysis visualbasic boundtreewalkerwithstackguard visit microsoft codeanalysis visualbasic boundnode node line basic microsoft codeanalysis visualbasic dll microsoft codeanalysis visualbasic boundtreewalker visitsequencepoint microsoft codeanalysis visualbasic boundsequencepoint node line basic microsoft codeanalysis visualbasic dll microsoft codeanalysis visualbasic boundsequencepoint accept microsoft codeanalysis visualbasic boundtreevisitor visitor line basic microsoft codeanalysis visualbasic dll microsoft codeanalysis visualbasic boundtreewalkerwithstackguard visit microsoft codeanalysis visualbasic boundnode node line basic microsoft codeanalysis visualbasic dll microsoft codeanalysis visualbasic boundtreewalker visitlist of microsoft codeanalysis visualbasic boundstatement system collections immutable immutablearray of microsoft codeanalysis visualbasic boundstatement list line basic microsoft codeanalysis visualbasic dll microsoft codeanalysis visualbasic boundtreewalker visitblock microsoft codeanalysis visualbasic boundblock node line basic microsoft codeanalysis visualbasic dll microsoft codeanalysis visualbasic lambdarewriter analysis visitlambda microsoft codeanalysis visualbasic boundlambda node boolean converttoexpressiontree line basic microsoft codeanalysis visualbasic dll microsoft codeanalysis visualbasic lambdarewriter analysis visitconversion microsoft codeanalysis visualbasic boundconversion conversion line basic microsoft codeanalysis visualbasic dll microsoft codeanalysis visualbasic boundconversion accept microsoft codeanalysis visualbasic boundtreevisitor visitor line basic microsoft codeanalysis visualbasic dll microsoft codeanalysis visualbasic boundtreewalkerwithstackguard visitexpressionwithoutstackguard microsoft codeanalysis visualbasic boundexpression node line basic microsoft codeanalysis visualbasic dll microsoft codeanalysis visualbasic boundtreevisitor visitexpressionwithstackguard integer recursiondepth microsoft codeanalysis visualbasic boundexpression node line basic microsoft codeanalysis visualbasic dll microsoft codeanalysis visualbasic boundtreewalkerwithstackguard visit microsoft codeanalysis visualbasic boundnode node line basic microsoft codeanalysis visualbasic dll microsoft codeanalysis visualbasic boundtreewalker visitassignmentoperator microsoft codeanalysis visualbasic boundassignmentoperator node line basic microsoft codeanalysis visualbasic dll microsoft codeanalysis visualbasic boundassignmentoperator accept microsoft codeanalysis visualbasic boundtreevisitor visitor line basic microsoft codeanalysis visualbasic dll microsoft codeanalysis visualbasic boundtreewalkerwithstackguard visitexpressionwithoutstackguard microsoft codeanalysis visualbasic boundexpression node line basic microsoft codeanalysis visualbasic dll microsoft codeanalysis visualbasic boundtreevisitor visitexpressionwithstackguard microsoft codeanalysis visualbasic boundexpression node line basic microsoft codeanalysis visualbasic dll microsoft codeanalysis visualbasic boundtreevisitor visitexpressionwithstackguard integer recursiondepth microsoft codeanalysis visualbasic boundexpression node line basic microsoft codeanalysis visualbasic dll microsoft codeanalysis visualbasic boundtreewalkerwithstackguard visit microsoft codeanalysis visualbasic boundnode node line basic microsoft codeanalysis visualbasic dll microsoft codeanalysis visualbasic boundtreewalker visitexpressionstatement microsoft codeanalysis visualbasic boundexpressionstatement node line basic microsoft codeanalysis visualbasic dll microsoft codeanalysis visualbasic boundexpressionstatement accept microsoft codeanalysis visualbasic boundtreevisitor visitor line basic microsoft codeanalysis visualbasic dll microsoft codeanalysis visualbasic boundtreewalkerwithstackguard visit microsoft codeanalysis visualbasic boundnode node line basic microsoft codeanalysis visualbasic dll microsoft codeanalysis visualbasic boundtreewalker visitsequencepoint microsoft codeanalysis visualbasic boundsequencepoint node line basic microsoft codeanalysis visualbasic dll microsoft codeanalysis visualbasic boundsequencepoint accept microsoft codeanalysis visualbasic boundtreevisitor visitor line basic microsoft codeanalysis visualbasic dll microsoft codeanalysis visualbasic boundtreewalkerwithstackguard visit microsoft codeanalysis visualbasic boundnode node line basic microsoft codeanalysis visualbasic dll microsoft codeanalysis visualbasic boundtreewalker visitlist of microsoft codeanalysis visualbasic boundstatement system collections immutable immutablearray of microsoft codeanalysis visualbasic boundstatement list line basic microsoft codeanalysis visualbasic dll microsoft codeanalysis visualbasic boundtreewalker visitstatementlist microsoft codeanalysis visualbasic boundstatementlist node line basic microsoft codeanalysis visualbasic dll microsoft codeanalysis visualbasic boundstatementlist accept microsoft codeanalysis visualbasic boundtreevisitor visitor line basic microsoft codeanalysis visualbasic dll microsoft codeanalysis visualbasic boundtreewalkerwithstackguard visit microsoft codeanalysis visualbasic boundnode node line basic microsoft codeanalysis visualbasic dll microsoft codeanalysis visualbasic boundtreewalker visitlist of microsoft codeanalysis visualbasic boundstatement system collections immutable immutablearray of microsoft codeanalysis visualbasic boundstatement list line basic microsoft codeanalysis visualbasic dll microsoft codeanalysis visualbasic boundtreewalker visitblock microsoft codeanalysis visualbasic boundblock node line basic microsoft codeanalysis visualbasic dll microsoft codeanalysis visualbasic lambdarewriter analysis visitblock microsoft codeanalysis visualbasic boundblock node line basic microsoft codeanalysis visualbasic dll microsoft codeanalysis visualbasic boundblock accept microsoft codeanalysis visualbasic boundtreevisitor visitor line basic microsoft codeanalysis visualbasic dll microsoft codeanalysis visualbasic boundtreewalkerwithstackguard visit microsoft codeanalysis visualbasic boundnode node line basic microsoft codeanalysis visualbasic dll microsoft codeanalysis visualbasic boundtreewalker visitlist of microsoft codeanalysis visualbasic boundstatement system collections immutable immutablearray of microsoft codeanalysis visualbasic boundstatement list line basic microsoft codeanalysis visualbasic dll microsoft codeanalysis visualbasic boundtreewalker visitblock microsoft codeanalysis visualbasic boundblock node line basic microsoft codeanalysis visualbasic dll microsoft codeanalysis visualbasic lambdarewriter analysis visitblock microsoft codeanalysis visualbasic boundblock node line basic microsoft codeanalysis visualbasic dll microsoft codeanalysis visualbasic boundblock accept microsoft codeanalysis visualbasic boundtreevisitor visitor line basic microsoft codeanalysis visualbasic dll microsoft codeanalysis visualbasic boundtreewalkerwithstackguard visit microsoft codeanalysis visualbasic boundnode node line basic microsoft codeanalysis visualbasic dll microsoft codeanalysis visualbasic boundtreewalker visitlist of microsoft codeanalysis visualbasic boundstatement system collections immutable immutablearray of microsoft codeanalysis visualbasic boundstatement list line basic microsoft codeanalysis visualbasic dll microsoft codeanalysis visualbasic boundtreewalker visitblock microsoft codeanalysis visualbasic boundblock node line basic microsoft codeanalysis visualbasic dll microsoft codeanalysis visualbasic lambdarewriter analysis visitblock microsoft codeanalysis visualbasic boundblock node line basic microsoft codeanalysis visualbasic dll microsoft codeanalysis visualbasic boundblock accept microsoft codeanalysis visualbasic boundtreevisitor visitor line basic microsoft codeanalysis visualbasic dll microsoft codeanalysis visualbasic boundtreewalkerwithstackguard visit microsoft codeanalysis visualbasic boundnode node line basic microsoft codeanalysis visualbasic dll microsoft codeanalysis visualbasic boundtreewalker visitlist of microsoft codeanalysis visualbasic boundstatement system collections immutable immutablearray of microsoft codeanalysis visualbasic boundstatement list line basic microsoft codeanalysis visualbasic dll microsoft codeanalysis visualbasic boundtreewalker visitblock microsoft codeanalysis visualbasic boundblock node line basic microsoft codeanalysis visualbasic dll microsoft codeanalysis visualbasic lambdarewriter analysis visitblock microsoft codeanalysis visualbasic boundblock node line basic microsoft codeanalysis visualbasic dll microsoft codeanalysis visualbasic boundblock accept microsoft codeanalysis visualbasic boundtreevisitor visitor line basic microsoft codeanalysis visualbasic dll microsoft codeanalysis visualbasic boundtreewalkerwithstackguard visit microsoft codeanalysis visualbasic boundnode node line basic microsoft codeanalysis visualbasic dll microsoft codeanalysis visualbasic boundtreewalker visitlist of microsoft codeanalysis visualbasic boundstatement system collections immutable immutablearray of microsoft codeanalysis visualbasic boundstatement list line basic microsoft codeanalysis visualbasic dll microsoft codeanalysis visualbasic boundtreewalker visitblock microsoft codeanalysis visualbasic boundblock node line basic microsoft codeanalysis visualbasic dll microsoft codeanalysis visualbasic lambdarewriter analysis visitblock microsoft codeanalysis visualbasic boundblock node line basic microsoft codeanalysis visualbasic dll microsoft codeanalysis visualbasic boundblock accept microsoft codeanalysis visualbasic boundtreevisitor visitor line basic microsoft codeanalysis visualbasic dll microsoft codeanalysis visualbasic boundtreewalkerwithstackguard visit microsoft codeanalysis visualbasic boundnode node line basic microsoft codeanalysis visualbasic dll microsoft codeanalysis visualbasic boundtreewalker visitlist of microsoft codeanalysis visualbasic boundstatement system collections immutable immutablearray of microsoft codeanalysis visualbasic boundstatement list line basic microsoft codeanalysis visualbasic dll microsoft codeanalysis visualbasic boundtreewalker visitblock microsoft codeanalysis visualbasic boundblock node line basic microsoft codeanalysis visualbasic dll microsoft codeanalysis visualbasic lambdarewriter analysis visitblock microsoft codeanalysis visualbasic boundblock node line basic microsoft codeanalysis visualbasic dll microsoft codeanalysis visualbasic boundblock accept microsoft codeanalysis visualbasic boundtreevisitor visitor line basic microsoft codeanalysis visualbasic dll microsoft codeanalysis visualbasic boundtreewalkerwithstackguard visit microsoft codeanalysis visualbasic boundnode node line basic microsoft codeanalysis visualbasic dll microsoft codeanalysis visualbasic boundtreewalker visitlist of microsoft codeanalysis visualbasic boundstatement system collections immutable immutablearray of microsoft codeanalysis visualbasic boundstatement list line basic microsoft codeanalysis visualbasic dll microsoft codeanalysis visualbasic boundtreewalker visitblock microsoft codeanalysis visualbasic boundblock node line basic microsoft codeanalysis visualbasic dll microsoft codeanalysis visualbasic lambdarewriter analysis visitblock microsoft codeanalysis visualbasic boundblock node line basic microsoft codeanalysis visualbasic dll microsoft codeanalysis visualbasic boundblock accept microsoft codeanalysis visualbasic boundtreevisitor visitor line basic microsoft codeanalysis visualbasic dll microsoft codeanalysis visualbasic boundtreewalkerwithstackguard visit microsoft codeanalysis visualbasic boundnode node line basic microsoft codeanalysis visualbasic dll microsoft codeanalysis visualbasic lambdarewriter analysis analyze microsoft codeanalysis visualbasic boundnode node line basic microsoft codeanalysis visualbasic dll microsoft codeanalysis visualbasic lambdarewriter analysis analyzemethodbody microsoft codeanalysis visualbasic boundblock node microsoft codeanalysis visualbasic symbols methodsymbol method system collections generic iset of microsoft codeanalysis visualbasic symbol symbolscapturedwithoutctor microsoft codeanalysis visualbasic bindingdiagnosticbag diagnostics line basic microsoft codeanalysis visualbasic dll microsoft codeanalysis visualbasic lambdarewriter rewrite microsoft codeanalysis visualbasic boundblock node microsoft codeanalysis visualbasic symbols methodsymbol method integer methodordinal microsoft codeanalysis pooledobjects arraybuilder of microsoft codeanalysis codegen lambdadebuginfo lambdadebuginfobuilder microsoft codeanalysis pooledobjects arraybuilder of microsoft codeanalysis codegen closuredebuginfo closuredebuginfobuilder integer delegaterelaxationiddispenser microsoft codeanalysis codegen variableslotallocator slotallocatoropt microsoft codeanalysis visualbasic typecompilationstate compilationstate system collections generic iset of microsoft codeanalysis visualbasic symbol symbolscapturedwithoutcopyctor microsoft codeanalysis visualbasic bindingdiagnosticbag diagnostics system collections generic hashset of microsoft codeanalysis visualbasic boundnode rewrittennodes line basic microsoft codeanalysis visualbasic dll microsoft codeanalysis visualbasic rewriter lowerbodyorinitializer microsoft codeanalysis visualbasic symbols methodsymbol method integer methodordinal microsoft codeanalysis visualbasic boundblock body microsoft codeanalysis visualbasic synthesizedsubmissionfields previoussubmissionfields microsoft codeanalysis visualbasic typecompilationstate compilationstate boolean instrumentfordynamicanalysis system collections immutable immutablearray of microsoft codeanalysis codegen sourcespan dynamicanalysisspans microsoft codeanalysis codegen debugdocumentprovider debugdocumentprovider microsoft codeanalysis visualbasic bindingdiagnosticbag diagnostics microsoft codeanalysis codegen variableslotallocator lazyvariableslotallocator microsoft codeanalysis pooledobjects arraybuilder of microsoft codeanalysis codegen lambdadebuginfo lambdadebuginfobuilder microsoft codeanalysis pooledobjects arraybuilder of microsoft codeanalysis codegen closuredebuginfo closuredebuginfobuilder integer delegaterelaxationiddispenser microsoft codeanalysis visualbasic statemachinetypesymbol statemachinetypeopt boolean allowomissionofconditionalcalls boolean isbodysynthesized line basic microsoft codeanalysis visualbasic dll microsoft codeanalysis visualbasic methodcompiler lowerandemitmethod microsoft codeanalysis visualbasic symbols methodsymbol method integer methodordinal microsoft codeanalysis visualbasic boundblock block microsoft codeanalysis visualbasic binder binderopt microsoft codeanalysis visualbasic typecompilationstate compilationstate microsoft codeanalysis visualbasic bindingdiagnosticbag diagsforcurrentmethod microsoft codeanalysis visualbasic binder processedfieldorpropertyinitializers processedinitializers microsoft codeanalysis visualbasic synthesizedsubmissionfields previoussubmissionfields microsoft codeanalysis visualbasic symbols methodsymbol constructortoinject integer delegaterelaxationiddispenser line basic microsoft codeanalysis visualbasic dll microsoft codeanalysis visualbasic methodcompiler compilemethod microsoft codeanalysis visualbasic symbols methodsymbol method integer methodordinal integer witheventpropertyiddispenser integer delegaterelaxationiddispenser system predicate of microsoft codeanalysis visualbasic symbol filter microsoft codeanalysis visualbasic typecompilationstate compilationstate microsoft codeanalysis visualbasic binder processedfieldorpropertyinitializers processedinitializers microsoft codeanalysis visualbasic binder containingtypebinder microsoft codeanalysis visualbasic synthesizedsubmissionfields previoussubmissionfields microsoft codeanalysis visualbasic symbols methodsymbol referencedconstructor line basic microsoft codeanalysis visualbasic dll microsoft codeanalysis visualbasic methodcompiler compilenamedtype microsoft codeanalysis visualbasic symbols namedtypesymbol containingtype system predicate of microsoft codeanalysis visualbasic symbol filter line basic microsoft codeanalysis visualbasic dll microsoft codeanalysis visualbasic methodcompiler visitnamedtype microsoft codeanalysis visualbasic symbols namedtypesymbol symbol line basic microsoft codeanalysis visualbasic dll microsoft codeanalysis visualbasic symbols namedtypesymbol accept microsoft codeanalysis visualbasic visualbasicsymbolvisitor visitor line basic microsoft codeanalysis visualbasic dll microsoft codeanalysis visualbasic methodcompiler compilenamespace microsoft codeanalysis visualbasic symbols namespacesymbol symbol line basic microsoft codeanalysis visualbasic dll microsoft codeanalysis visualbasic methodcompiler visitnamespace microsoft codeanalysis visualbasic symbols namespacesymbol symbol line basic microsoft codeanalysis visualbasic dll microsoft codeanalysis visualbasic symbols namespacesymbol accept microsoft codeanalysis visualbasic visualbasicsymbolvisitor visitor line basic microsoft codeanalysis visualbasic dll microsoft codeanalysis visualbasic methodcompiler compilemethodbodies microsoft codeanalysis visualbasic visualbasiccompilation compilation microsoft codeanalysis visualbasic emit pemodulebuilder modulebeingbuiltopt boolean emittingpdb boolean emittestcoveragedata boolean hasdeclarationerrors system predicate of microsoft codeanalysis visualbasic symbol filter microsoft codeanalysis visualbasic bindingdiagnosticbag diagnostics system threading cancellationtoken cancellationtoken line basic microsoft codeanalysis visualbasic dll microsoft codeanalysis visualbasic visualbasiccompilation compilemethods microsoft codeanalysis emit commonpemodulebuilder modulebuilder boolean emittingpdb boolean emitmetadataonly boolean emittestcoveragedata microsoft codeanalysis diagnosticbag diagnostics system predicate of microsoft codeanalysis symbols isymbolinternal filteropt system threading cancellationtoken cancellationtoken line basic microsoft codeanalysis dll microsoft codeanalysis compilation emit system io stream pestream system io stream metadatapestream system io stream pdbstream system io stream xmldocumentationstream system io stream system collections generic ienumerable manifestresources microsoft codeanalysis emit emitoptions options microsoft codeanalysis imethodsymbol debugentrypoint system io stream sourcelinkstream system collections generic ienumerable embeddedtexts microsoft codeanalysis codegen compilationtestdata testdata system threading cancellationtoken cancellationtoken line c microsoft codeanalysis dll microsoft codeanalysis compilation emit system io stream pestream system io stream pdbstream system io stream xmldocumentationstream system io stream system collections generic ienumerable manifestresources microsoft codeanalysis emit emitoptions options microsoft codeanalysis imethodsymbol debugentrypoint system io stream sourcelinkstream system collections generic ienumerable embeddedtexts system io stream metadatapestream system threading cancellationtoken cancellationtoken line c roslyn test utilities dll microsoft codeanalysis diagnosticextensions getemitdiagnostics microsoft codeanalysis visualbasic visualbasiccompilation c microsoft codeanalysis emit emitoptions options system collections generic ienumerable manifestresources line c roslyn test utilities dll microsoft codeanalysis diagnosticextensions getemitdiagnostics microsoft codeanalysis visualbasic visualbasiccompilation c line c microsoft codeanalysis visualbasic test utilities dll microsoft codeanalysis visualbasic unittests compilationutils verifyusedassemblyreferences system func of microsoft codeanalysis visualbasic visualbasiccompilation createcompilationlambda line basic microsoft codeanalysis visualbasic test utilities dll microsoft codeanalysis visualbasic unittests compilationutils createemptycompilation microsoft codeanalysis visualbasic unittests basictestsource source system collections generic ienumerable of microsoft codeanalysis metadatareference references microsoft codeanalysis visualbasic visualbasiccompilationoptions options microsoft codeanalysis visualbasic visualbasicparseoptions parseoptions string assemblyname line basic microsoft codeanalysis visualbasic semantic unittests dll microsoft codeanalysis visualbasic unittests flowtestbase compileandgetmodelandspan system xml linq xelement program system collections generic list of microsoft codeanalysis visualbasic visualbasicsyntaxnode startnodes system collections generic list of microsoft codeanalysis visualbasic visualbasicsyntaxnode endnodes system xml linq xcdata ilsource system xml linq xelement errors microsoft codeanalysis visualbasic visualbasicparseoptions parseoptions line basic microsoft codeanalysis visualbasic semantic unittests dll microsoft codeanalysis visualbasic unittests flowtestbase compileandgetmodelandspan of microsoft codeanalysis dataflowanalysis system xml linq xelement program system func of microsoft codeanalysis semanticmodel system collections generic list of microsoft codeanalysis visualbasic visualbasicsyntaxnode system collections generic list of microsoft codeanalysis visualbasic visualbasicsyntaxnode microsoft codeanalysis dataflowanalysis analysisdelegate system xml linq xcdata ilsource system xml linq xelement errors line basic microsoft codeanalysis visualbasic semantic unittests dll microsoft codeanalysis visualbasic unittests flowtestbase compileandanalyzedataflow system xml linq xelement program system xml linq xcdata ilsource system xml linq xelement errors line basic microsoft codeanalysis visualbasic semantic unittests dll microsoft codeanalysis visualbasic unittests flowanalysistests withstatement expression lvalue line basic the scenario is taken from microsoft codeanalysis visualbasic unittests flowanalysistests withstatement expression lvalue unit test it will be disabled in dotnet features usedassemblyreferences branch because it blocks the feature test hook
| 1
|
57,924
| 16,166,871,293
|
IssuesEvent
|
2021-05-01 17:23:24
|
ascott18/TellMeWhen
|
https://api.github.com/repos/ascott18/TellMeWhen
|
closed
|
[Bug] Can't move a locked group
|
S: invalid T: defect
|
**What version of TellMeWhen are you using? **
v9.0.6 Classic
**What steps will reproduce the problem?**
1. Left click on an icon
2. Drag
**What do you expect to happen? What happens instead?**
Expect Icon to move, with my mouse, but it does not.
**Screenshots and Export Strings**
**String 1 [Icon: Buff/Debuff]**
```
^1^T^SType^Sbuff ^SName^SCorruption;~`Curse~`of~`Agony;~`Immolate;~`Siphon~`Life ^SEnabled^B ^t^N90601^S~`~| ^Sicon^^
```
**String 2 [Group: Dots (Group: 1)]**
```
^1^T^SGUID^STMW:group:1U6ucUgXeR8R ^SScale^F4866192577658899 ^f-52^SRows ^N4^STextureName ^SDetails~`Serenity^SOnlyInCombat ^B^SLocked ^B^SView ^Sbar^SColumns ^N1^SLayoutDirection ^N5^SName ^SDoTs^SSettingsPerView ^T^Sbar^T ^SSizeX^N135.9 ^SSizeY^N19.9 ^SPadding^N1 ^t^t^SIcons^T ^N1^T ^SType^Sbuff ^SName^SCorruption;~`Curse~`of~`Agony;~`Immolate;~`Siphon~`Life ^SEnabled^B ^t^N2^T ^SType^Scooldown ^SName^SCurse~`of~`Agony ^SEnabled^B ^t^N3^T ^SType^Scooldown ^SName^SImmolate ^SEnabled^B ^t^N4^T ^SType^Scooldown ^SName^SSiphon~`Life ^SEnabled^B ^t^t^SPoint^T ^Sy^F5266421121111656 ^f-45^Sx ^F-7403317190447788^f-46 ^Spoint^SRIGHT ^SrelativePoint^SRIGHT ^t^t^N90601^S~`~| ^Sgroup^N1 ^^
```

**Additional Info**
Regarding the image, the top group is the one that won't move. The Icons below (each is its own group) can be dragged perfectly fine
|
1.0
|
[Bug] Can't move a locked group - **What version of TellMeWhen are you using? **
v9.0.6 Classic
**What steps will reproduce the problem?**
1. Left click on an icon
2. Drag
**What do you expect to happen? What happens instead?**
Expect Icon to move, with my mouse, but it does not.
**Screenshots and Export Strings**
**String 1 [Icon: Buff/Debuff]**
```
^1^T^SType^Sbuff ^SName^SCorruption;~`Curse~`of~`Agony;~`Immolate;~`Siphon~`Life ^SEnabled^B ^t^N90601^S~`~| ^Sicon^^
```
**String 2 [Group: Dots (Group: 1)]**
```
^1^T^SGUID^STMW:group:1U6ucUgXeR8R ^SScale^F4866192577658899 ^f-52^SRows ^N4^STextureName ^SDetails~`Serenity^SOnlyInCombat ^B^SLocked ^B^SView ^Sbar^SColumns ^N1^SLayoutDirection ^N5^SName ^SDoTs^SSettingsPerView ^T^Sbar^T ^SSizeX^N135.9 ^SSizeY^N19.9 ^SPadding^N1 ^t^t^SIcons^T ^N1^T ^SType^Sbuff ^SName^SCorruption;~`Curse~`of~`Agony;~`Immolate;~`Siphon~`Life ^SEnabled^B ^t^N2^T ^SType^Scooldown ^SName^SCurse~`of~`Agony ^SEnabled^B ^t^N3^T ^SType^Scooldown ^SName^SImmolate ^SEnabled^B ^t^N4^T ^SType^Scooldown ^SName^SSiphon~`Life ^SEnabled^B ^t^t^SPoint^T ^Sy^F5266421121111656 ^f-45^Sx ^F-7403317190447788^f-46 ^Spoint^SRIGHT ^SrelativePoint^SRIGHT ^t^t^N90601^S~`~| ^Sgroup^N1 ^^
```

**Additional Info**
Regarding the image, the top group is the one that won't move. The Icons below (each is its own group) can be dragged perfectly fine
|
non_reli
|
can t move a locked group what version of tellmewhen are you using classic what steps will reproduce the problem left click on an icon drag what do you expect to happen what happens instead expect icon to move with my mouse but it does not screenshots and export strings string t stype sbuff sname scorruption curse of agony immolate siphon life senabled b t s sicon string t sguid stmw group sscale f srows stexturename sdetails serenity sonlyincombat b slocked b sview sbar scolumns slayoutdirection sname sdots ssettingsperview t sbar t ssizex ssizey spadding t t sicons t t stype sbuff sname scorruption curse of agony immolate siphon life senabled b t t stype scooldown sname scurse of agony senabled b t t stype scooldown sname simmolate senabled b t t stype scooldown sname ssiphon life senabled b t t spoint t sy f sx f f spoint sright srelativepoint sright t t s sgroup additional info regarding the image the top group is the one that won t move the icons below each is its own group can be dragged perfectly fine
| 0
|
1,613
| 17,534,301,512
|
IssuesEvent
|
2021-08-12 03:40:01
|
ppy/osu
|
https://api.github.com/repos/ppy/osu
|
closed
|
Crash in editor when making changes to hitobjects
|
missing details area:editor type:reliability
|
May be related to autoplay generation or some other weirdness.
https://user-images.githubusercontent.com/191335/112435722-76046400-8d88-11eb-94ac-3daca293bdc1.mp4
```
[runtime] 2021-03-25 06:30:55 [error]: An unhandled error has occurred.
[runtime] 2021-03-25 06:30:55 [error]: System.InvalidOperationException: A DrawableSliderHead was hit before it became hittable!
[runtime] 2021-03-25 06:30:55 [error]: at osu.Game.Rulesets.Osu.UI.StartTimeOrderedHitPolicy.HandleHit(DrawableHitObject hitObject) in /Users/dean/Projects/osu/osu.Game.Rulesets.Osu/UI/StartTimeOrderedHitPolicy.cs:line 53
[runtime] 2021-03-25 06:30:55 [error]: at osu.Game.Rulesets.Osu.UI.OsuPlayfield.onNewResult(DrawableHitObject judgedObject, JudgementResult result) in /Users/dean/Projects/osu/osu.Game.Rulesets.Osu/UI/OsuPlayfield.cs:line 142
[runtime] 2021-03-25 06:30:55 [error]: at osu.Game.Rulesets.UI.Playfield.<.ctor>b__27_2(DrawableHitObject d, JudgementResult r) in /Users/dean/Projects/osu/osu.Game/Rulesets/UI/Playfield.cs:line 103
[runtime] 2021-03-25 06:30:55 [error]: at osu.Game.Rulesets.UI.HitObjectContainer.onNewResult(DrawableHitObject d, JudgementResult r) in /Users/dean/Projects/osu/osu.Game/Rulesets/UI/HitObjectContainer.cs:line 213
[runtime] 2021-03-25 06:30:55 [error]: at osu.Game.Rulesets.Objects.Drawables.DrawableHitObject.onNewResult(DrawableHitObject drawableHitObject, JudgementResult result) in /Users/dean/Projects/osu/osu.Game/Rulesets/Objects/Drawables/DrawableHitObject.cs:line 384
[runtime] 2021-03-25 06:30:55 [error]: at osu.Game.Rulesets.Objects.Drawables.DrawableHitObject.ApplyResult(Action`1 application) in /Users/dean/Projects/osu/osu.Game/Rulesets/Objects/Drawables/DrawableHitObject.cs:line 768
[runtime] 2021-03-25 06:30:55 [error]: at osu.Game.Rulesets.Osu.Objects.Drawables.DrawableHitCircle.CheckForResult(Boolean userTriggered, Double timeOffset) in /Users/dean/Projects/osu/osu.Game.Rulesets.Osu/Objects/Drawables/DrawableHitCircle.cs:line 134
[runtime] 2021-03-25 06:30:55 [error]: at osu.Game.Rulesets.Objects.Drawables.DrawableHitObject.UpdateResult(Boolean userTriggered) in /Users/dean/Projects/osu/osu.Game/Rulesets/Objects/Drawables/DrawableHitObject.cs:line 785
[runtime] 2021-03-25 06:30:55 [error]: at osu.Game.Rulesets.Osu.Objects.Drawables.DrawableHitCircle.<load>b__20_4() in /Users/dean/Projects/osu/osu.Game.Rulesets.Osu/Objects/Drawables/DrawableHitCircle.cs:line 65
[runtime] 2021-03-25 06:30:55 [error]: at osu.Game.Rulesets.Osu.Objects.Drawables.DrawableHitCircle.HitReceptor.OnPressed(OsuAction action) in /Users/dean/Projects/osu/osu.Game.Rulesets.Osu/Objects/Drawables/DrawableHitCircle.cs:line 225
```
|
True
|
Crash in editor when making changes to hitobjects - May be related to autoplay generation or some other weirdness.
https://user-images.githubusercontent.com/191335/112435722-76046400-8d88-11eb-94ac-3daca293bdc1.mp4
```
[runtime] 2021-03-25 06:30:55 [error]: An unhandled error has occurred.
[runtime] 2021-03-25 06:30:55 [error]: System.InvalidOperationException: A DrawableSliderHead was hit before it became hittable!
[runtime] 2021-03-25 06:30:55 [error]: at osu.Game.Rulesets.Osu.UI.StartTimeOrderedHitPolicy.HandleHit(DrawableHitObject hitObject) in /Users/dean/Projects/osu/osu.Game.Rulesets.Osu/UI/StartTimeOrderedHitPolicy.cs:line 53
[runtime] 2021-03-25 06:30:55 [error]: at osu.Game.Rulesets.Osu.UI.OsuPlayfield.onNewResult(DrawableHitObject judgedObject, JudgementResult result) in /Users/dean/Projects/osu/osu.Game.Rulesets.Osu/UI/OsuPlayfield.cs:line 142
[runtime] 2021-03-25 06:30:55 [error]: at osu.Game.Rulesets.UI.Playfield.<.ctor>b__27_2(DrawableHitObject d, JudgementResult r) in /Users/dean/Projects/osu/osu.Game/Rulesets/UI/Playfield.cs:line 103
[runtime] 2021-03-25 06:30:55 [error]: at osu.Game.Rulesets.UI.HitObjectContainer.onNewResult(DrawableHitObject d, JudgementResult r) in /Users/dean/Projects/osu/osu.Game/Rulesets/UI/HitObjectContainer.cs:line 213
[runtime] 2021-03-25 06:30:55 [error]: at osu.Game.Rulesets.Objects.Drawables.DrawableHitObject.onNewResult(DrawableHitObject drawableHitObject, JudgementResult result) in /Users/dean/Projects/osu/osu.Game/Rulesets/Objects/Drawables/DrawableHitObject.cs:line 384
[runtime] 2021-03-25 06:30:55 [error]: at osu.Game.Rulesets.Objects.Drawables.DrawableHitObject.ApplyResult(Action`1 application) in /Users/dean/Projects/osu/osu.Game/Rulesets/Objects/Drawables/DrawableHitObject.cs:line 768
[runtime] 2021-03-25 06:30:55 [error]: at osu.Game.Rulesets.Osu.Objects.Drawables.DrawableHitCircle.CheckForResult(Boolean userTriggered, Double timeOffset) in /Users/dean/Projects/osu/osu.Game.Rulesets.Osu/Objects/Drawables/DrawableHitCircle.cs:line 134
[runtime] 2021-03-25 06:30:55 [error]: at osu.Game.Rulesets.Objects.Drawables.DrawableHitObject.UpdateResult(Boolean userTriggered) in /Users/dean/Projects/osu/osu.Game/Rulesets/Objects/Drawables/DrawableHitObject.cs:line 785
[runtime] 2021-03-25 06:30:55 [error]: at osu.Game.Rulesets.Osu.Objects.Drawables.DrawableHitCircle.<load>b__20_4() in /Users/dean/Projects/osu/osu.Game.Rulesets.Osu/Objects/Drawables/DrawableHitCircle.cs:line 65
[runtime] 2021-03-25 06:30:55 [error]: at osu.Game.Rulesets.Osu.Objects.Drawables.DrawableHitCircle.HitReceptor.OnPressed(OsuAction action) in /Users/dean/Projects/osu/osu.Game.Rulesets.Osu/Objects/Drawables/DrawableHitCircle.cs:line 225
```
|
reli
|
crash in editor when making changes to hitobjects may be related to autoplay generation or some other weirdness an unhandled error has occurred system invalidoperationexception a drawablesliderhead was hit before it became hittable at osu game rulesets osu ui starttimeorderedhitpolicy handlehit drawablehitobject hitobject in users dean projects osu osu game rulesets osu ui starttimeorderedhitpolicy cs line at osu game rulesets osu ui osuplayfield onnewresult drawablehitobject judgedobject judgementresult result in users dean projects osu osu game rulesets osu ui osuplayfield cs line at osu game rulesets ui playfield b drawablehitobject d judgementresult r in users dean projects osu osu game rulesets ui playfield cs line at osu game rulesets ui hitobjectcontainer onnewresult drawablehitobject d judgementresult r in users dean projects osu osu game rulesets ui hitobjectcontainer cs line at osu game rulesets objects drawables drawablehitobject onnewresult drawablehitobject drawablehitobject judgementresult result in users dean projects osu osu game rulesets objects drawables drawablehitobject cs line at osu game rulesets objects drawables drawablehitobject applyresult action application in users dean projects osu osu game rulesets objects drawables drawablehitobject cs line at osu game rulesets osu objects drawables drawablehitcircle checkforresult boolean usertriggered double timeoffset in users dean projects osu osu game rulesets osu objects drawables drawablehitcircle cs line at osu game rulesets objects drawables drawablehitobject updateresult boolean usertriggered in users dean projects osu osu game rulesets objects drawables drawablehitobject cs line at osu game rulesets osu objects drawables drawablehitcircle b in users dean projects osu osu game rulesets osu objects drawables drawablehitcircle cs line at osu game rulesets osu objects drawables drawablehitcircle hitreceptor onpressed osuaction action in users dean projects osu osu game rulesets osu objects drawables drawablehitcircle cs line
| 1
|
1,065
| 12,746,820,900
|
IssuesEvent
|
2020-06-26 16:39:45
|
FoundationDB/fdb-kubernetes-operator
|
https://api.github.com/repos/FoundationDB/fdb-kubernetes-operator
|
closed
|
Guaranteeing fault tolerance when choosing coordinators in the Kubernetes operator
|
reliability
|
The Kubernetes operator has logic for choosing coordinators when creating a new cluster or replacing instances. This logic does not use the locality information to determine which coordinators it chooses. This can lead to it recruiting coordinators that are not fault tolerant. We should factor in the locality information when choosing coordinators here. As an alternative, we could consider using `coordinators auto`. We’ve historically preferred to have other tooling make the decision about coordinators, but the database seems like it would have as much or even more information to inform this choice, so it seems like a shame to have to reimplement it in different tooling.
|
True
|
Guaranteeing fault tolerance when choosing coordinators in the Kubernetes operator - The Kubernetes operator has logic for choosing coordinators when creating a new cluster or replacing instances. This logic does not use the locality information to determine which coordinators it chooses. This can lead to it recruiting coordinators that are not fault tolerant. We should factor in the locality information when choosing coordinators here. As an alternative, we could consider using `coordinators auto`. We’ve historically preferred to have other tooling make the decision about coordinators, but the database seems like it would have as much or even more information to inform this choice, so it seems like a shame to have to reimplement it in different tooling.
|
reli
|
guaranteeing fault tolerance when choosing coordinators in the kubernetes operator the kubernetes operator has logic for choosing coordinators when creating a new cluster or replacing instances this logic does not use the locality information to determine which coordinators it chooses this can lead to it recruiting coordinators that are not fault tolerant we should factor in the locality information when choosing coordinators here as an alternative we could consider using coordinators auto we’ve historically preferred to have other tooling make the decision about coordinators but the database seems like it would have as much or even more information to inform this choice so it seems like a shame to have to reimplement it in different tooling
| 1
|
1,956
| 22,141,057,831
|
IssuesEvent
|
2022-06-03 06:56:41
|
camunda/zeebe
|
https://api.github.com/repos/camunda/zeebe
|
closed
|
Gateway got OutOfMemoryError: Direct buffer memory
|
kind/bug severity/low scope/gateway area/reliability team/distributed
|
**Describe the bug**
[It seems a production cluster went out of direct memory, but it was catched by netty. ](https://console.cloud.google.com/errors/COHxkaza1faoBQ?service=zeebe&time=P7D&project=camunda-cloud-240911&authuser=1)
**To Reproduce**
Not clear how. Happens on a Production M cluster, with 8 ram limit and java heap 50% of RAM. Probably default setting for direct memory.[ Was only logged once.](https://console.cloud.google.com/logs/viewer?expandAll=false×tamp=2020-12-29T15:33:47.990687000Z&dateRangeStart=2020-12-29T14:34:17.605Z&dateRangeEnd=2020-12-29T16:34:17.605Z&project=camunda-cloud-240911&authuser=1&minLogLevel=0&customFacets=&limitCustomFacetWidth=true&advancedFilter=logName:%22stdout%22%0Aresource.type%3D%22k8s_container%22%0Aresource.labels.cluster_name%3D%22production%22%0Aresource.labels.namespace_name%3D%2213f3c38b-6734-410c-8589-d5f0bdcc38c0-zeebe%22%0Aresource.labels.container_name%3D%22zeebe%22%0Aresource.labels.pod_name%3D%22zeebe-1%22%0AjsonPayload.logger!%3D%22io.zeebe.snapshots.broker.impl.FileBasedReceivedSnapshot%22%0AjsonPayload.logger!%3D%22io.zeebe.logstreams.snapshot%22&interval=JUMP_TO_TIME&scrollTimestamp=2020-12-29T15:34:02.957894000Z&pinnedLogId=d2keeaiiy1y7dvv8i&pinnedLogTimestamp=2020-12-29T15:33:47.605197Z) We can see in the metric also a spike of direct buffer memory usage.

Might be related to shared resources of embedded gateway and broker. Ideally we would deploy standalone gw in camunda cloud.
We can see that the load of the cluster is not high. Furthermore we see that Broker-1 (where the exception/error) happens is leader for 2 partitions.

**Expected behavior**
No out of direct memory and if so that we restart the pod.
**Log/Stacktrace**
<details><summary>Full Stacktrace</summary>
<p>
```
java.lang.OutOfMemoryError: Direct buffer memory
at io.netty.buffer.PoolArena$DirectArena.allocateDirect (PoolArena.java:645)
at io.netty.buffer.PoolArena$DirectArena.newUnpooledChunk (PoolArena.java:635)
at io.netty.buffer.PoolArena.allocateHuge (PoolArena.java:215)
at io.netty.buffer.PoolArena.allocate (PoolArena.java:143)
at io.netty.buffer.PoolArena.reallocate (PoolArena.java:288)
at io.netty.buffer.PooledByteBuf.capacity (PooledByteBuf.java:118)
at io.netty.buffer.AbstractByteBuf.ensureWritable0 (AbstractByteBuf.java:307)
at io.netty.buffer.AbstractByteBuf.ensureWritable (AbstractByteBuf.java:282)
at io.netty.buffer.AbstractByteBuf.writeBytes (AbstractByteBuf.java:1105)
at io.netty.handler.codec.ByteToMessageDecoder$1.cumulate (ByteToMessageDecoder.java:99)
at io.netty.handler.codec.ByteToMessageDecoder.channelRead (ByteToMessageDecoder.java:274)
at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead (AbstractChannelHandlerContext.java:379)
at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead (AbstractChannelHandlerContext.java:365)
at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead (AbstractChannelHandlerContext.java:357)
at io.netty.channel.DefaultChannelPipeline$HeadContext.channelRead (DefaultChannelPipeline.java:1410)
at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead (AbstractChannelHandlerContext.java:379)
at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead (AbstractChannelHandlerContext.java:365)
at io.netty.channel.DefaultChannelPipeline.fireChannelRead (DefaultChannelPipeline.java:919)
at io.netty.channel.epoll.AbstractEpollStreamChannel$EpollStreamUnsafe.epollInReady (AbstractEpollStreamChannel.java:795)
at io.netty.channel.epoll.EpollEventLoop.processReady (EpollEventLoop.java:475)
at io.netty.channel.epoll.EpollEventLoop.run (EpollEventLoop.java:378)
at io.netty.util.concurrent.SingleThreadEventExecutor$4.run (SingleThreadEventExecutor.java:989)
at io.netty.util.internal.ThreadExecutorMap$2.run (ThreadExecutorMap.java:74)
at java.lang.Thread.run (Unknown Source)
```
</p>
</details>
**Environment:**
- OS: [e.g. Linux]
- Zeebe Version: [e.g. 0.25.3]
- Configuration: Production M
|
True
|
Gateway got OutOfMemoryError: Direct buffer memory - **Describe the bug**
[It seems a production cluster went out of direct memory, but it was catched by netty. ](https://console.cloud.google.com/errors/COHxkaza1faoBQ?service=zeebe&time=P7D&project=camunda-cloud-240911&authuser=1)
**To Reproduce**
Not clear how. Happens on a Production M cluster, with 8 ram limit and java heap 50% of RAM. Probably default setting for direct memory.[ Was only logged once.](https://console.cloud.google.com/logs/viewer?expandAll=false×tamp=2020-12-29T15:33:47.990687000Z&dateRangeStart=2020-12-29T14:34:17.605Z&dateRangeEnd=2020-12-29T16:34:17.605Z&project=camunda-cloud-240911&authuser=1&minLogLevel=0&customFacets=&limitCustomFacetWidth=true&advancedFilter=logName:%22stdout%22%0Aresource.type%3D%22k8s_container%22%0Aresource.labels.cluster_name%3D%22production%22%0Aresource.labels.namespace_name%3D%2213f3c38b-6734-410c-8589-d5f0bdcc38c0-zeebe%22%0Aresource.labels.container_name%3D%22zeebe%22%0Aresource.labels.pod_name%3D%22zeebe-1%22%0AjsonPayload.logger!%3D%22io.zeebe.snapshots.broker.impl.FileBasedReceivedSnapshot%22%0AjsonPayload.logger!%3D%22io.zeebe.logstreams.snapshot%22&interval=JUMP_TO_TIME&scrollTimestamp=2020-12-29T15:34:02.957894000Z&pinnedLogId=d2keeaiiy1y7dvv8i&pinnedLogTimestamp=2020-12-29T15:33:47.605197Z) We can see in the metric also a spike of direct buffer memory usage.

Might be related to shared resources of embedded gateway and broker. Ideally we would deploy standalone gw in camunda cloud.
We can see that the load of the cluster is not high. Furthermore we see that Broker-1 (where the exception/error) happens is leader for 2 partitions.

**Expected behavior**
No out of direct memory and if so that we restart the pod.
**Log/Stacktrace**
<details><summary>Full Stacktrace</summary>
<p>
```
java.lang.OutOfMemoryError: Direct buffer memory
at io.netty.buffer.PoolArena$DirectArena.allocateDirect (PoolArena.java:645)
at io.netty.buffer.PoolArena$DirectArena.newUnpooledChunk (PoolArena.java:635)
at io.netty.buffer.PoolArena.allocateHuge (PoolArena.java:215)
at io.netty.buffer.PoolArena.allocate (PoolArena.java:143)
at io.netty.buffer.PoolArena.reallocate (PoolArena.java:288)
at io.netty.buffer.PooledByteBuf.capacity (PooledByteBuf.java:118)
at io.netty.buffer.AbstractByteBuf.ensureWritable0 (AbstractByteBuf.java:307)
at io.netty.buffer.AbstractByteBuf.ensureWritable (AbstractByteBuf.java:282)
at io.netty.buffer.AbstractByteBuf.writeBytes (AbstractByteBuf.java:1105)
at io.netty.handler.codec.ByteToMessageDecoder$1.cumulate (ByteToMessageDecoder.java:99)
at io.netty.handler.codec.ByteToMessageDecoder.channelRead (ByteToMessageDecoder.java:274)
at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead (AbstractChannelHandlerContext.java:379)
at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead (AbstractChannelHandlerContext.java:365)
at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead (AbstractChannelHandlerContext.java:357)
at io.netty.channel.DefaultChannelPipeline$HeadContext.channelRead (DefaultChannelPipeline.java:1410)
at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead (AbstractChannelHandlerContext.java:379)
at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead (AbstractChannelHandlerContext.java:365)
at io.netty.channel.DefaultChannelPipeline.fireChannelRead (DefaultChannelPipeline.java:919)
at io.netty.channel.epoll.AbstractEpollStreamChannel$EpollStreamUnsafe.epollInReady (AbstractEpollStreamChannel.java:795)
at io.netty.channel.epoll.EpollEventLoop.processReady (EpollEventLoop.java:475)
at io.netty.channel.epoll.EpollEventLoop.run (EpollEventLoop.java:378)
at io.netty.util.concurrent.SingleThreadEventExecutor$4.run (SingleThreadEventExecutor.java:989)
at io.netty.util.internal.ThreadExecutorMap$2.run (ThreadExecutorMap.java:74)
at java.lang.Thread.run (Unknown Source)
```
</p>
</details>
**Environment:**
- OS: [e.g. Linux]
- Zeebe Version: [e.g. 0.25.3]
- Configuration: Production M
|
reli
|
gateway got outofmemoryerror direct buffer memory describe the bug to reproduce not clear how happens on a production m cluster with ram limit and java heap of ram probably default setting for direct memory we can see in the metric also a spike of direct buffer memory usage might be related to shared resources of embedded gateway and broker ideally we would deploy standalone gw in camunda cloud we can see that the load of the cluster is not high furthermore we see that broker where the exception error happens is leader for partitions expected behavior no out of direct memory and if so that we restart the pod log stacktrace full stacktrace java lang outofmemoryerror direct buffer memory at io netty buffer poolarena directarena allocatedirect poolarena java at io netty buffer poolarena directarena newunpooledchunk poolarena java at io netty buffer poolarena allocatehuge poolarena java at io netty buffer poolarena allocate poolarena java at io netty buffer poolarena reallocate poolarena java at io netty buffer pooledbytebuf capacity pooledbytebuf java at io netty buffer abstractbytebuf abstractbytebuf java at io netty buffer abstractbytebuf ensurewritable abstractbytebuf java at io netty buffer abstractbytebuf writebytes abstractbytebuf java at io netty handler codec bytetomessagedecoder cumulate bytetomessagedecoder java at io netty handler codec bytetomessagedecoder channelread bytetomessagedecoder java at io netty channel abstractchannelhandlercontext invokechannelread abstractchannelhandlercontext java at io netty channel abstractchannelhandlercontext invokechannelread abstractchannelhandlercontext java at io netty channel abstractchannelhandlercontext firechannelread abstractchannelhandlercontext java at io netty channel defaultchannelpipeline headcontext channelread defaultchannelpipeline java at io netty channel abstractchannelhandlercontext invokechannelread abstractchannelhandlercontext java at io netty channel abstractchannelhandlercontext invokechannelread abstractchannelhandlercontext java at io netty channel defaultchannelpipeline firechannelread defaultchannelpipeline java at io netty channel epoll abstractepollstreamchannel epollstreamunsafe epollinready abstractepollstreamchannel java at io netty channel epoll epolleventloop processready epolleventloop java at io netty channel epoll epolleventloop run epolleventloop java at io netty util concurrent singlethreadeventexecutor run singlethreadeventexecutor java at io netty util internal threadexecutormap run threadexecutormap java at java lang thread run unknown source environment os zeebe version configuration production m
| 1
|
74,953
| 9,171,468,923
|
IssuesEvent
|
2019-03-04 01:59:41
|
Justin-Terry/SafeHopper
|
https://api.github.com/repos/Justin-Terry/SafeHopper
|
closed
|
Message sequence chart - only need one
|
Design Specification review
|
"Message sequence chart and description: Provide one message sequence chart for a
central functionality of your system to show you also know how to work with this kind
of notation. As it will be somewhat redundant to the activity diagrams I am only asking
you for one of those."
|
1.0
|
Message sequence chart - only need one - "Message sequence chart and description: Provide one message sequence chart for a
central functionality of your system to show you also know how to work with this kind
of notation. As it will be somewhat redundant to the activity diagrams I am only asking
you for one of those."
|
non_reli
|
message sequence chart only need one message sequence chart and description provide one message sequence chart for a central functionality of your system to show you also know how to work with this kind of notation as it will be somewhat redundant to the activity diagrams i am only asking you for one of those
| 0
|
267,495
| 28,509,064,247
|
IssuesEvent
|
2023-04-19 01:32:11
|
dpteam/RK3188_TABLET
|
https://api.github.com/repos/dpteam/RK3188_TABLET
|
closed
|
CVE-2011-4131 (Medium) detected in randomv3.0.66, linuxv3.0 - autoclosed
|
Mend: dependency security vulnerability
|
## CVE-2011-4131 - Medium Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Libraries - <b>randomv3.0.66</b>, <b>linuxv3.0</b></p></summary>
<p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary>
<p>
The NFSv4 implementation in the Linux kernel before 3.2.2 does not properly handle bitmap sizes in GETACL replies, which allows remote NFS servers to cause a denial of service (OOPS) by sending an excessive number of bitmap words.
<p>Publish Date: 2012-05-17
<p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2011-4131>CVE-2011-4131</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>5.3</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Adjacent
- Attack Complexity: High
- Privileges Required: None
- User Interaction: None
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: None
- Integrity Impact: None
- Availability Impact: High
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary>
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://www.linuxkernelcves.com/cves/CVE-2011-4131">https://www.linuxkernelcves.com/cves/CVE-2011-4131</a></p>
<p>Release Date: 2012-05-17</p>
<p>Fix Resolution: v3.3-rc1,v3.2.2</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-2011-4131 (Medium) detected in randomv3.0.66, linuxv3.0 - autoclosed - ## CVE-2011-4131 - Medium Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Libraries - <b>randomv3.0.66</b>, <b>linuxv3.0</b></p></summary>
<p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary>
<p>
The NFSv4 implementation in the Linux kernel before 3.2.2 does not properly handle bitmap sizes in GETACL replies, which allows remote NFS servers to cause a denial of service (OOPS) by sending an excessive number of bitmap words.
<p>Publish Date: 2012-05-17
<p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2011-4131>CVE-2011-4131</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>5.3</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Adjacent
- Attack Complexity: High
- Privileges Required: None
- User Interaction: None
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: None
- Integrity Impact: None
- Availability Impact: High
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary>
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://www.linuxkernelcves.com/cves/CVE-2011-4131">https://www.linuxkernelcves.com/cves/CVE-2011-4131</a></p>
<p>Release Date: 2012-05-17</p>
<p>Fix Resolution: v3.3-rc1,v3.2.2</p>
</p>
</details>
<p></p>
***
Step up your Open Source Security Game with Mend [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
|
non_reli
|
cve medium detected in autoclosed cve medium severity vulnerability vulnerable libraries vulnerability details the implementation in the linux kernel before does not properly handle bitmap sizes in getacl replies which allows remote nfs servers to cause a denial of service oops by sending an excessive number of bitmap words publish date url a href cvss score details base score metrics exploitability metrics attack vector adjacent attack complexity high privileges required none user interaction none scope unchanged impact metrics confidentiality impact none integrity impact none availability impact high for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution step up your open source security game with mend
| 0
|
2,699
| 27,120,094,926
|
IssuesEvent
|
2023-02-15 22:01:51
|
NVIDIA/spark-rapids
|
https://api.github.com/repos/NVIDIA/spark-rapids
|
opened
|
[FEA] Handle SplitAndRetryOOM for `BatchedByKey` goal in GpuCoalesceBatches
|
feature request ? - Needs Triage reliability
|
For the `BatchedByKey` goal we are required to preserve that sets of keys stay within a batch (that no key is split between two batches). This fits with the split/merge approach for SplitAndRetryOOM and we should be able to produce smaller batches satisfying this requirement rather than OOMing.
|
True
|
[FEA] Handle SplitAndRetryOOM for `BatchedByKey` goal in GpuCoalesceBatches - For the `BatchedByKey` goal we are required to preserve that sets of keys stay within a batch (that no key is split between two batches). This fits with the split/merge approach for SplitAndRetryOOM and we should be able to produce smaller batches satisfying this requirement rather than OOMing.
|
reli
|
handle splitandretryoom for batchedbykey goal in gpucoalescebatches for the batchedbykey goal we are required to preserve that sets of keys stay within a batch that no key is split between two batches this fits with the split merge approach for splitandretryoom and we should be able to produce smaller batches satisfying this requirement rather than ooming
| 1
|
163
| 4,756,940,870
|
IssuesEvent
|
2016-10-24 15:17:25
|
romance-ii/violet-volts
|
https://api.github.com/repos/romance-ii/violet-volts
|
opened
|
Gazonga catcher
|
reliability user-visible-bug
|
A “Gazonga!” is an error that is thrown and never caught; in JavaScript in particular, it might be thrown from an event-handler context or something where a `catch` block wasn't in dynamic scope.
The Romance way of handling these has always been based around reporting back to the host, and trying to offer recovery solutions. The traditional handler at Res Interactive was named ZOMG (Zombies! Oh, My God!) and that is being used as the target here.
* Catch Gazonga errors
* Log them to the Console
* Report them to the Host
|
True
|
Gazonga catcher - A “Gazonga!” is an error that is thrown and never caught; in JavaScript in particular, it might be thrown from an event-handler context or something where a `catch` block wasn't in dynamic scope.
The Romance way of handling these has always been based around reporting back to the host, and trying to offer recovery solutions. The traditional handler at Res Interactive was named ZOMG (Zombies! Oh, My God!) and that is being used as the target here.
* Catch Gazonga errors
* Log them to the Console
* Report them to the Host
|
reli
|
gazonga catcher a “gazonga ” is an error that is thrown and never caught in javascript in particular it might be thrown from an event handler context or something where a catch block wasn t in dynamic scope the romance way of handling these has always been based around reporting back to the host and trying to offer recovery solutions the traditional handler at res interactive was named zomg zombies oh my god and that is being used as the target here catch gazonga errors log them to the console report them to the host
| 1
|
375
| 7,113,135,460
|
IssuesEvent
|
2018-01-17 19:23:56
|
dotnet/corefx
|
https://api.github.com/repos/dotnet/corefx
|
closed
|
System.Net.Http.WinHttpResponseStream leading to crash in SafeWinHttpHandle.ReleaseHandle
|
area-System.Net.Http bug tenet-reliability
|
We are reporting daily crashes after moving our application from .Net 4.6 to .Net Core 2.0. When the crash occurs all 64 Cores are spiked at 100% CPU.
Example Call Stack:
#1: SafeWinHttpHandle.ReleaseHandle()
```
00 coreclr!EEPolicy::HandleFatalError
01 coreclr!ProcessCLRException
02 ntdll!RtlpExecuteHandlerForException
03 ntdll!RtlDispatchException
04 ntdll!KiUserExceptionDispatch
05 crypt32!ReleaseContextElement
06 crypt32!CertFreeCertificateContext
07 winhttp!WEBIO_REQUEST::{dtor}
08 winhttp!WEBIO_REQUEST::`scalar deleting destructor'
09 winhttp!HTTP_BASE_OBJECT::Dereference
0a winhttp!HTTP_USER_REQUEST::_SafeDetachSysReq
0b winhttp!HTTP_USER_REQUEST::Shutdown
0c winhttp!HTTP_REQUEST_HANDLE_OBJECT::SafeShutdownUsrReq
0d winhttp!_InternetCloseHandle
0e winhttp!WinHttpCloseHandle
Child SP IP Call Site
00000109e165da28 00007ffaf35a4f86 [InlinedCallFrame: 00000109e165da28] Interop+WinHttp.WinHttpCloseHandle(IntPtr)
00000109e165da28 00007ffa943ab463 [InlinedCallFrame: 00000109e165da28] Interop+WinHttp.WinHttpCloseHandle(IntPtr)
00000109e165dab0 00007ffaf1bb6b08 Interop+WinHttp+SafeWinHttpHandle.ReleaseHandle() [E:\A\_work\774\s\corefx\src\Common\src\Interop\Windows\winhttp\Interop.SafeWinHttpHandle.cs @ 59]
00000109e165dcd0 00007ffaf3482d33 [GCFrame: 00000109e165dcd0]
00000109e165dd08 00007ffaf3482d33 [GCFrame: 00000109e165dd08]
00000109e165de58 00007ffaf3482d33 [HelperMethodFrame_1OBJ: 00000109e165de58] System.Runtime.InteropServices.SafeHandle.InternalDispose()
00000109e165dfc0 00007ffaf1bd1ca7 System.Net.Http.WinHttpResponseStream.Dispose(Boolean) [E:\A\_work\774\s\corefx\src\System.Net.Http.WinHttpHandler\src\System\Net\Http\WinHttpResponseStream.cs @ 282]
00000109e165e000 00007ffaf2e1a72a System.IO.Stream.Close() [E:\A\_work\308\s\src\mscorlib\src\System\IO\Stream.cs @ 263]
00000109e165e030 00007ffaf1bc97d0 System.Net.Http.NoWriteNoSeekStreamContent+c.b__4_0(System.Threading.Tasks.Task, System.Object) [E:\A\_work\774\s\corefx\src\Common\src\System\Net\Http\NoWriteNoSeekStreamContent.cs @ 51]
00000109e165e070 00007ffaf2d871ce System.Threading.ExecutionContext.Run(System.Threading.ExecutionContext, System.Threading.ContextCallback, System.Object) [E:\A\_work\308\s\src\mscorlib\shared\System\Threading\ExecutionContext.cs @ 145]
00000109e165e0e0 00007ffaf2e143d6 System.Threading.Tasks.Task.ExecuteWithThreadLocal(System.Threading.Tasks.Task ByRef) [E:\A\_work\308\s\src\mscorlib\src\System\Threading\Tasks\Task.cs @ 2454]
00000109e165e180 00007ffaf2f78446 System.Threading.Tasks.ThreadPoolTaskScheduler.TryExecuteTaskInline(System.Threading.Tasks.Task, Boolean) [E:\A\_work\308\s\src\mscorlib\src\System\Threading\Tasks\ThreadPoolTaskScheduler.cs @ 76]
00000109e165e1d0 00007ffaf2e439b3 System.Threading.Tasks.TaskScheduler.TryRunInline(System.Threading.Tasks.Task, Boolean) [E:\A\_work\308\s\src\mscorlib\src\System\Threading\Tasks\TaskScheduler.cs @ 210]
00000109e165e230 00007ffaf2e800df System.Threading.Tasks.TaskContinuation.InlineIfPossibleOrElseQueue(System.Threading.Tasks.Task, Boolean) [E:\A\_work\308\s\src\mscorlib\src\System\Threading\Tasks\TaskContinuation.cs @ 256]
00000109e165e280 00007ffaf2e155af System.Threading.Tasks.Task.RunContinuations(System.Object) [E:\A\_work\308\s\src\mscorlib\src\System\Threading\Tasks\Task.cs @ 3263]
00000109e165e370 00007ffaf2e81705 System.Threading.Tasks.Task`1[[System.Threading.Tasks.VoidTaskResult, System.Private.CoreLib]].TrySetResult(System.Threading.Tasks.VoidTaskResult) [E:\A\_work\308\s\src\mscorlib\src\System\Threading\Tasks\future.cs @ 425]
00000109e165e3b0 00007ffaf2e5dc89 System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[[System.Threading.Tasks.VoidTaskResult, System.Private.CoreLib]].SetExistingTaskResult(System.Threading.Tasks.VoidTaskResult) [E:\A\_work\308\s\src\mscorlib\src\System\Runtime\CompilerServices\AsyncMethodBuilder.cs @ 605]
00000109e165e3f0 00007ffaf2e5dc1c System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[[System.Threading.Tasks.VoidTaskResult, System.Private.CoreLib]].SetResult(System.Threading.Tasks.Task`1) [E:\A\_work\308\s\src\mscorlib\src\System\Runtime\CompilerServices\AsyncMethodBuilder.cs @ 646]
00000109e165e420 00007ffaf1bd2532 System.Net.Http.WinHttpResponseStream+d__18.MoveNext() [E:\A\_work\774\s\corefx\src\System.Net.Http.WinHttpHandler\src\System\Net\Http\WinHttpResponseStream.cs @ 163]
00000109e165e4e0 00007ffaf2d871ce System.Threading.ExecutionContext.Run(System.Threading.ExecutionContext, System.Threading.ContextCallback, System.Object) [E:\A\_work\308\s\src\mscorlib\shared\System\Threading\ExecutionContext.cs @ 145]
00000109e165e550 00007ffaf2d871ce System.Threading.ExecutionContext.Run(System.Threading.ExecutionContext, System.Threading.ContextCallback, System.Object) [E:\A\_work\308\s\src\mscorlib\shared\System\Threading\ExecutionContext.cs @ 145]
00000109e165e5c0 00007ffaf2e143d6 System.Threading.Tasks.Task.ExecuteWithThreadLocal(System.Threading.Tasks.Task ByRef) [E:\A\_work\308\s\src\mscorlib\src\System\Threading\Tasks\Task.cs @ 2454]
00000109e165e660 00007ffaf2e537f9 System.Threading.ThreadPoolWorkQueue.Dispatch() [E:\A\_work\308\s\src\mscorlib\src\System\Threading\ThreadPool.cs @ 582]
```
#2: SafeWinHttpHandle.ReleaseHandle()
```
Child SP IP Call Site
000000bb26d9c590 00007ffd81220c8a [FaultingExceptionFrame: 000000bb26d9c590]
000000bb26d9ca90 00007ffd6754e6c6 System.Net.Http.WinHttpRequestCallback.RequestCallback(IntPtr, System.Net.Http.WinHttpRequestState, UInt32, IntPtr, UInt32)
000000bb26d9ea70 00007ffd68903190 [FaultingExceptionFrame: 000000bb26d9ea70]
000000bb26d9ef70 00007ffd6754e57e System.Net.Http.WinHttpRequestCallback.RequestCallback(IntPtr, System.Net.Http.WinHttpRequestState, UInt32, IntPtr, UInt32)
000000bb26d9efe0 00007ffd6754e4a7 System.Net.Http.WinHttpRequestCallback.WinHttpCallback(IntPtr, IntPtr, UInt32, IntPtr, UInt32)
000000bb26d9f030 00007ffd099b1332 DomainBoundILStubClass.IL_STUB_ReversePInvoke(Int64, Int64, Int32, Int64, Int32)
000000bb26d9f2c8 00007ffd68a02e4a [InlinedCallFrame: 000000bb26d9f2c8] Interop+WinHttp.WinHttpCloseHandle(IntPtr)
000000bb26d9f2c8 00007ffd099b34c3 [InlinedCallFrame: 000000bb26d9f2c8] Interop+WinHttp.WinHttpCloseHandle(IntPtr)
000000bb26d9f350 00007ffd67536b08 Interop+WinHttp+SafeWinHttpHandle.ReleaseHandle()
000000bb26d9f4a0 00007ffd68a02d33 [GCFrame: 000000bb26d9f4a0]
000000bb26d9f618 00007ffd68a02d33 [GCFrame: 000000bb26d9f618]
000000bb26d9f6b8 00007ffd68a02d33 [HelperMethodFrame_1OBJ: 000000bb26d9f6b8] System.Runtime.InteropServices.SafeHandle.InternalFinalize()
000000bb26d9f7c0 00007ffd68359b16 System.Runtime.InteropServices.SafeHandle.Finalize()
000000bb26d9fbf0 00007ffd68a02ca6 [DebuggerU2MCatchHandlerFrame: 000000bb26d9fbf0]
```
#3: WinHttpHandler.HandleAsyncException ()
```
Exception object: 000000f740eb92f8
Exception type: System.NullReferenceException
Message: Object reference not set to an instance of an object.
InnerException: <none>
StackTrace (generated):
System.Net.Http.WinHttpHandler.HandleAsyncException(System.Net.Http.WinHttpRequestState, System.Exception)
System_Net_Http!System.Net.Http.WinHttpHandler+<StartRequest>d__105.MoveNext()+
System_Private_CoreLib!System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()System_Private_CoreLib!System.Threading.ExecutionContext.Run(System.Threading.ExecutionContext, System.Threading.ContextCallback, System.Object)
System_Private_CoreLib!System.Threading.ThreadPoolWorkQueue.Dispatch()
```
#4
```
Thread Id: 1273 OS Id: 5be0 Locks: 0
Thread is Alive
Last Exception: (System.ExecutionEngineException) (null)
0000000cbaf6deb8 0000000000000000 InlinedCallFrame
0000000cbaf6deb8 0000000000000000 InlinedCallFrame
0000000cbaf6de90 00007ffbd2ac41b3 DomainBoundILStubClass.IL_STUB_PInvoke(IntPtr)
0000000cbaf6df40 00007ffc31906768 Interop+WinHttp+SafeWinHttpHandle.ReleaseHandle()
0000000cbaf6e160 0000000000000000 GCFrame
0000000cbaf6e198 0000000000000000 GCFrame
0000000cbaf6e2e8 0000000000000000 HelperMethodFrame_1OBJ
0000000cbaf6e450 00007ffc31921767 System.Net.Http.WinHttpResponseStream.Dispose(Boolean)
0000000cbaf6e490 00007ffc2dcd009a System.IO.Stream.Close()
0000000cbaf6e4c0 00007ffc31919310 System.Net.Http.NoWriteNoSeekStreamContent+<>c.<SerializeToStreamAsync>b__4_0(System.Threading.Tasks.Task, System.Object)
0000000cbaf6e500 00007ffc2dc3b3be System.Threading.ExecutionContext.Run(System.Threading.ExecutionContext, System.Threading.ContextCallback, System.Object)
0000000cbaf6e570 00007ffc2dcc9d46 System.Threading.Tasks.Task.ExecuteWithThreadLocal(System.Threading.Tasks.Task ByRef)
0000000cbaf6e610 00007ffc2de2c466 System.Threading.Tasks.ThreadPoolTaskScheduler.TryExecuteTaskInline(System.Threading.Tasks.Task, Boolean)
0000000cbaf6e660 00007ffc2dcf7213 System.Threading.Tasks.TaskScheduler.TryRunInline(System.Threading.Tasks.Task, Boolean)
0000000cbaf6e6c0 00007ffc2dd33a5f System.Threading.Tasks.TaskContinuation.InlineIfPossibleOrElseQueue(System.Threading.Tasks.Task, Boolean)
0000000cbaf6e710 00007ffc2dccaf1f System.Threading.Tasks.Task.RunContinuations(System.Object)
0000000cbaf6e800 00007ffc2dd35085 System.Threading.Tasks.Task`1[[System.Threading.Tasks.VoidTaskResult, System.Private.CoreLib]].TrySetResult(System.Threading.Tasks.VoidTaskResult)
0000000cbaf6e840 00007ffc2dd114f9 System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[[System.Threading.Tasks.VoidTaskResult, System.Private.CoreLib]].SetExistingTaskResult(System.Threading.Tasks.VoidTaskResult)
0000000cbaf6e880 00007ffc2dd1148c System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[[System.Threading.Tasks.VoidTaskResult, System.Private.CoreLib]].SetResult(System.Threading.Tasks.Task`1<System.Threading.Tasks.VoidTaskResult>)
0000000cbaf6e8b0 00007ffc31921fc6 System.Net.Http.WinHttpResponseStream+<CopyToAsyncCore>d__18.MoveNext()
0000000cbaf6e970 00007ffc2dc3b3be System.Threading.ExecutionContext.Run(System.Threading.ExecutionContext, System.Threading.ContextCallback, System.Object)
0000000cbaf6e9e0 00007ffc2dc3b3be System.Threading.ExecutionContext.Run(System.Threading.ExecutionContext, System.Threading.ContextCallback, System.Object)
0000000cbaf6ea50 00007ffc2dcc9d46 System.Threading.Tasks.Task.ExecuteWithThreadLocal(System.Threading.Tasks.Task ByRef)
0000000cbaf6eaf0 00007ffc2dd07069 System.Threading.ThreadPoolWorkQueue.Dispatch()
```
Some Notes on the usage of `HttpClient`:
* Shared instance of `HttpClientHandler` as `static readonly HttpMessageHandler`
* Most often invoked methods:
* `public object Invoke(string method, Type returnType = null, object parameters = null)`
* `public async Task<object> InvokeAsync(string method, Type returnType = null, object parameters = null, CancellationToken cancellationToken = default (CancellationToken))`
* The core functionality is implemented by `async Task<object> GetResponseAsync `
* Instantiates new instance of `HttpClient` on every call as new `HttpClient(webServerInvoker.Handler, false)` where `webServerInvoker.Handler` is the shared static instance.
* Awaits for `PostAsync` result, a timed `CancellationToken` is provided .
* Always disposes `HttpClient` instance at the end of the call.
* Note that synchronous public object Invoke enforces its own timeout while waiting for InvokeAsync Task result. It cancels the CancellationTokenSource if the timeout is hit, in turn cancelling any pending HttpClient operation and immediately disposing of HttpClient instance.
* The timeout is provided by the caller. It ranges from 30 seconds to 5 minutes.
[EDIT] Formatting changes by @karelz
|
True
|
System.Net.Http.WinHttpResponseStream leading to crash in SafeWinHttpHandle.ReleaseHandle - We are reporting daily crashes after moving our application from .Net 4.6 to .Net Core 2.0. When the crash occurs all 64 Cores are spiked at 100% CPU.
Example Call Stack:
#1: SafeWinHttpHandle.ReleaseHandle()
```
00 coreclr!EEPolicy::HandleFatalError
01 coreclr!ProcessCLRException
02 ntdll!RtlpExecuteHandlerForException
03 ntdll!RtlDispatchException
04 ntdll!KiUserExceptionDispatch
05 crypt32!ReleaseContextElement
06 crypt32!CertFreeCertificateContext
07 winhttp!WEBIO_REQUEST::{dtor}
08 winhttp!WEBIO_REQUEST::`scalar deleting destructor'
09 winhttp!HTTP_BASE_OBJECT::Dereference
0a winhttp!HTTP_USER_REQUEST::_SafeDetachSysReq
0b winhttp!HTTP_USER_REQUEST::Shutdown
0c winhttp!HTTP_REQUEST_HANDLE_OBJECT::SafeShutdownUsrReq
0d winhttp!_InternetCloseHandle
0e winhttp!WinHttpCloseHandle
Child SP IP Call Site
00000109e165da28 00007ffaf35a4f86 [InlinedCallFrame: 00000109e165da28] Interop+WinHttp.WinHttpCloseHandle(IntPtr)
00000109e165da28 00007ffa943ab463 [InlinedCallFrame: 00000109e165da28] Interop+WinHttp.WinHttpCloseHandle(IntPtr)
00000109e165dab0 00007ffaf1bb6b08 Interop+WinHttp+SafeWinHttpHandle.ReleaseHandle() [E:\A\_work\774\s\corefx\src\Common\src\Interop\Windows\winhttp\Interop.SafeWinHttpHandle.cs @ 59]
00000109e165dcd0 00007ffaf3482d33 [GCFrame: 00000109e165dcd0]
00000109e165dd08 00007ffaf3482d33 [GCFrame: 00000109e165dd08]
00000109e165de58 00007ffaf3482d33 [HelperMethodFrame_1OBJ: 00000109e165de58] System.Runtime.InteropServices.SafeHandle.InternalDispose()
00000109e165dfc0 00007ffaf1bd1ca7 System.Net.Http.WinHttpResponseStream.Dispose(Boolean) [E:\A\_work\774\s\corefx\src\System.Net.Http.WinHttpHandler\src\System\Net\Http\WinHttpResponseStream.cs @ 282]
00000109e165e000 00007ffaf2e1a72a System.IO.Stream.Close() [E:\A\_work\308\s\src\mscorlib\src\System\IO\Stream.cs @ 263]
00000109e165e030 00007ffaf1bc97d0 System.Net.Http.NoWriteNoSeekStreamContent+c.b__4_0(System.Threading.Tasks.Task, System.Object) [E:\A\_work\774\s\corefx\src\Common\src\System\Net\Http\NoWriteNoSeekStreamContent.cs @ 51]
00000109e165e070 00007ffaf2d871ce System.Threading.ExecutionContext.Run(System.Threading.ExecutionContext, System.Threading.ContextCallback, System.Object) [E:\A\_work\308\s\src\mscorlib\shared\System\Threading\ExecutionContext.cs @ 145]
00000109e165e0e0 00007ffaf2e143d6 System.Threading.Tasks.Task.ExecuteWithThreadLocal(System.Threading.Tasks.Task ByRef) [E:\A\_work\308\s\src\mscorlib\src\System\Threading\Tasks\Task.cs @ 2454]
00000109e165e180 00007ffaf2f78446 System.Threading.Tasks.ThreadPoolTaskScheduler.TryExecuteTaskInline(System.Threading.Tasks.Task, Boolean) [E:\A\_work\308\s\src\mscorlib\src\System\Threading\Tasks\ThreadPoolTaskScheduler.cs @ 76]
00000109e165e1d0 00007ffaf2e439b3 System.Threading.Tasks.TaskScheduler.TryRunInline(System.Threading.Tasks.Task, Boolean) [E:\A\_work\308\s\src\mscorlib\src\System\Threading\Tasks\TaskScheduler.cs @ 210]
00000109e165e230 00007ffaf2e800df System.Threading.Tasks.TaskContinuation.InlineIfPossibleOrElseQueue(System.Threading.Tasks.Task, Boolean) [E:\A\_work\308\s\src\mscorlib\src\System\Threading\Tasks\TaskContinuation.cs @ 256]
00000109e165e280 00007ffaf2e155af System.Threading.Tasks.Task.RunContinuations(System.Object) [E:\A\_work\308\s\src\mscorlib\src\System\Threading\Tasks\Task.cs @ 3263]
00000109e165e370 00007ffaf2e81705 System.Threading.Tasks.Task`1[[System.Threading.Tasks.VoidTaskResult, System.Private.CoreLib]].TrySetResult(System.Threading.Tasks.VoidTaskResult) [E:\A\_work\308\s\src\mscorlib\src\System\Threading\Tasks\future.cs @ 425]
00000109e165e3b0 00007ffaf2e5dc89 System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[[System.Threading.Tasks.VoidTaskResult, System.Private.CoreLib]].SetExistingTaskResult(System.Threading.Tasks.VoidTaskResult) [E:\A\_work\308\s\src\mscorlib\src\System\Runtime\CompilerServices\AsyncMethodBuilder.cs @ 605]
00000109e165e3f0 00007ffaf2e5dc1c System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[[System.Threading.Tasks.VoidTaskResult, System.Private.CoreLib]].SetResult(System.Threading.Tasks.Task`1) [E:\A\_work\308\s\src\mscorlib\src\System\Runtime\CompilerServices\AsyncMethodBuilder.cs @ 646]
00000109e165e420 00007ffaf1bd2532 System.Net.Http.WinHttpResponseStream+d__18.MoveNext() [E:\A\_work\774\s\corefx\src\System.Net.Http.WinHttpHandler\src\System\Net\Http\WinHttpResponseStream.cs @ 163]
00000109e165e4e0 00007ffaf2d871ce System.Threading.ExecutionContext.Run(System.Threading.ExecutionContext, System.Threading.ContextCallback, System.Object) [E:\A\_work\308\s\src\mscorlib\shared\System\Threading\ExecutionContext.cs @ 145]
00000109e165e550 00007ffaf2d871ce System.Threading.ExecutionContext.Run(System.Threading.ExecutionContext, System.Threading.ContextCallback, System.Object) [E:\A\_work\308\s\src\mscorlib\shared\System\Threading\ExecutionContext.cs @ 145]
00000109e165e5c0 00007ffaf2e143d6 System.Threading.Tasks.Task.ExecuteWithThreadLocal(System.Threading.Tasks.Task ByRef) [E:\A\_work\308\s\src\mscorlib\src\System\Threading\Tasks\Task.cs @ 2454]
00000109e165e660 00007ffaf2e537f9 System.Threading.ThreadPoolWorkQueue.Dispatch() [E:\A\_work\308\s\src\mscorlib\src\System\Threading\ThreadPool.cs @ 582]
```
#2: SafeWinHttpHandle.ReleaseHandle()
```
Child SP IP Call Site
000000bb26d9c590 00007ffd81220c8a [FaultingExceptionFrame: 000000bb26d9c590]
000000bb26d9ca90 00007ffd6754e6c6 System.Net.Http.WinHttpRequestCallback.RequestCallback(IntPtr, System.Net.Http.WinHttpRequestState, UInt32, IntPtr, UInt32)
000000bb26d9ea70 00007ffd68903190 [FaultingExceptionFrame: 000000bb26d9ea70]
000000bb26d9ef70 00007ffd6754e57e System.Net.Http.WinHttpRequestCallback.RequestCallback(IntPtr, System.Net.Http.WinHttpRequestState, UInt32, IntPtr, UInt32)
000000bb26d9efe0 00007ffd6754e4a7 System.Net.Http.WinHttpRequestCallback.WinHttpCallback(IntPtr, IntPtr, UInt32, IntPtr, UInt32)
000000bb26d9f030 00007ffd099b1332 DomainBoundILStubClass.IL_STUB_ReversePInvoke(Int64, Int64, Int32, Int64, Int32)
000000bb26d9f2c8 00007ffd68a02e4a [InlinedCallFrame: 000000bb26d9f2c8] Interop+WinHttp.WinHttpCloseHandle(IntPtr)
000000bb26d9f2c8 00007ffd099b34c3 [InlinedCallFrame: 000000bb26d9f2c8] Interop+WinHttp.WinHttpCloseHandle(IntPtr)
000000bb26d9f350 00007ffd67536b08 Interop+WinHttp+SafeWinHttpHandle.ReleaseHandle()
000000bb26d9f4a0 00007ffd68a02d33 [GCFrame: 000000bb26d9f4a0]
000000bb26d9f618 00007ffd68a02d33 [GCFrame: 000000bb26d9f618]
000000bb26d9f6b8 00007ffd68a02d33 [HelperMethodFrame_1OBJ: 000000bb26d9f6b8] System.Runtime.InteropServices.SafeHandle.InternalFinalize()
000000bb26d9f7c0 00007ffd68359b16 System.Runtime.InteropServices.SafeHandle.Finalize()
000000bb26d9fbf0 00007ffd68a02ca6 [DebuggerU2MCatchHandlerFrame: 000000bb26d9fbf0]
```
#3: WinHttpHandler.HandleAsyncException ()
```
Exception object: 000000f740eb92f8
Exception type: System.NullReferenceException
Message: Object reference not set to an instance of an object.
InnerException: <none>
StackTrace (generated):
System.Net.Http.WinHttpHandler.HandleAsyncException(System.Net.Http.WinHttpRequestState, System.Exception)
System_Net_Http!System.Net.Http.WinHttpHandler+<StartRequest>d__105.MoveNext()+
System_Private_CoreLib!System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()System_Private_CoreLib!System.Threading.ExecutionContext.Run(System.Threading.ExecutionContext, System.Threading.ContextCallback, System.Object)
System_Private_CoreLib!System.Threading.ThreadPoolWorkQueue.Dispatch()
```
#4
```
Thread Id: 1273 OS Id: 5be0 Locks: 0
Thread is Alive
Last Exception: (System.ExecutionEngineException) (null)
0000000cbaf6deb8 0000000000000000 InlinedCallFrame
0000000cbaf6deb8 0000000000000000 InlinedCallFrame
0000000cbaf6de90 00007ffbd2ac41b3 DomainBoundILStubClass.IL_STUB_PInvoke(IntPtr)
0000000cbaf6df40 00007ffc31906768 Interop+WinHttp+SafeWinHttpHandle.ReleaseHandle()
0000000cbaf6e160 0000000000000000 GCFrame
0000000cbaf6e198 0000000000000000 GCFrame
0000000cbaf6e2e8 0000000000000000 HelperMethodFrame_1OBJ
0000000cbaf6e450 00007ffc31921767 System.Net.Http.WinHttpResponseStream.Dispose(Boolean)
0000000cbaf6e490 00007ffc2dcd009a System.IO.Stream.Close()
0000000cbaf6e4c0 00007ffc31919310 System.Net.Http.NoWriteNoSeekStreamContent+<>c.<SerializeToStreamAsync>b__4_0(System.Threading.Tasks.Task, System.Object)
0000000cbaf6e500 00007ffc2dc3b3be System.Threading.ExecutionContext.Run(System.Threading.ExecutionContext, System.Threading.ContextCallback, System.Object)
0000000cbaf6e570 00007ffc2dcc9d46 System.Threading.Tasks.Task.ExecuteWithThreadLocal(System.Threading.Tasks.Task ByRef)
0000000cbaf6e610 00007ffc2de2c466 System.Threading.Tasks.ThreadPoolTaskScheduler.TryExecuteTaskInline(System.Threading.Tasks.Task, Boolean)
0000000cbaf6e660 00007ffc2dcf7213 System.Threading.Tasks.TaskScheduler.TryRunInline(System.Threading.Tasks.Task, Boolean)
0000000cbaf6e6c0 00007ffc2dd33a5f System.Threading.Tasks.TaskContinuation.InlineIfPossibleOrElseQueue(System.Threading.Tasks.Task, Boolean)
0000000cbaf6e710 00007ffc2dccaf1f System.Threading.Tasks.Task.RunContinuations(System.Object)
0000000cbaf6e800 00007ffc2dd35085 System.Threading.Tasks.Task`1[[System.Threading.Tasks.VoidTaskResult, System.Private.CoreLib]].TrySetResult(System.Threading.Tasks.VoidTaskResult)
0000000cbaf6e840 00007ffc2dd114f9 System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[[System.Threading.Tasks.VoidTaskResult, System.Private.CoreLib]].SetExistingTaskResult(System.Threading.Tasks.VoidTaskResult)
0000000cbaf6e880 00007ffc2dd1148c System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[[System.Threading.Tasks.VoidTaskResult, System.Private.CoreLib]].SetResult(System.Threading.Tasks.Task`1<System.Threading.Tasks.VoidTaskResult>)
0000000cbaf6e8b0 00007ffc31921fc6 System.Net.Http.WinHttpResponseStream+<CopyToAsyncCore>d__18.MoveNext()
0000000cbaf6e970 00007ffc2dc3b3be System.Threading.ExecutionContext.Run(System.Threading.ExecutionContext, System.Threading.ContextCallback, System.Object)
0000000cbaf6e9e0 00007ffc2dc3b3be System.Threading.ExecutionContext.Run(System.Threading.ExecutionContext, System.Threading.ContextCallback, System.Object)
0000000cbaf6ea50 00007ffc2dcc9d46 System.Threading.Tasks.Task.ExecuteWithThreadLocal(System.Threading.Tasks.Task ByRef)
0000000cbaf6eaf0 00007ffc2dd07069 System.Threading.ThreadPoolWorkQueue.Dispatch()
```
Some Notes on the usage of `HttpClient`:
* Shared instance of `HttpClientHandler` as `static readonly HttpMessageHandler`
* Most often invoked methods:
* `public object Invoke(string method, Type returnType = null, object parameters = null)`
* `public async Task<object> InvokeAsync(string method, Type returnType = null, object parameters = null, CancellationToken cancellationToken = default (CancellationToken))`
* The core functionality is implemented by `async Task<object> GetResponseAsync `
* Instantiates new instance of `HttpClient` on every call as new `HttpClient(webServerInvoker.Handler, false)` where `webServerInvoker.Handler` is the shared static instance.
* Awaits for `PostAsync` result, a timed `CancellationToken` is provided .
* Always disposes `HttpClient` instance at the end of the call.
* Note that synchronous public object Invoke enforces its own timeout while waiting for InvokeAsync Task result. It cancels the CancellationTokenSource if the timeout is hit, in turn cancelling any pending HttpClient operation and immediately disposing of HttpClient instance.
* The timeout is provided by the caller. It ranges from 30 seconds to 5 minutes.
[EDIT] Formatting changes by @karelz
|
reli
|
system net http winhttpresponsestream leading to crash in safewinhttphandle releasehandle we are reporting daily crashes after moving our application from net to net core when the crash occurs all cores are spiked at cpu example call stack safewinhttphandle releasehandle coreclr eepolicy handlefatalerror coreclr processclrexception ntdll rtlpexecutehandlerforexception ntdll rtldispatchexception ntdll kiuserexceptiondispatch releasecontextelement certfreecertificatecontext winhttp webio request dtor winhttp webio request scalar deleting destructor winhttp http base object dereference winhttp http user request safedetachsysreq winhttp http user request shutdown winhttp http request handle object safeshutdownusrreq winhttp internetclosehandle winhttp winhttpclosehandle child sp ip call site interop winhttp winhttpclosehandle intptr interop winhttp winhttpclosehandle intptr interop winhttp safewinhttphandle releasehandle system runtime interopservices safehandle internaldispose system net http winhttpresponsestream dispose boolean system io stream close system net http nowritenoseekstreamcontent c b system threading tasks task system object system threading executioncontext run system threading executioncontext system threading contextcallback system object system threading tasks task executewiththreadlocal system threading tasks task byref system threading tasks threadpooltaskscheduler tryexecutetaskinline system threading tasks task boolean system threading tasks taskscheduler tryruninline system threading tasks task boolean system threading tasks taskcontinuation inlineifpossibleorelsequeue system threading tasks task boolean system threading tasks task runcontinuations system object system threading tasks task trysetresult system threading tasks voidtaskresult system runtime compilerservices asynctaskmethodbuilder setexistingtaskresult system threading tasks voidtaskresult system runtime compilerservices asynctaskmethodbuilder setresult system threading tasks task system net http winhttpresponsestream d movenext system threading executioncontext run system threading executioncontext system threading contextcallback system object system threading executioncontext run system threading executioncontext system threading contextcallback system object system threading tasks task executewiththreadlocal system threading tasks task byref system threading threadpoolworkqueue dispatch safewinhttphandle releasehandle child sp ip call site system net http winhttprequestcallback requestcallback intptr system net http winhttprequeststate intptr system net http winhttprequestcallback requestcallback intptr system net http winhttprequeststate intptr system net http winhttprequestcallback winhttpcallback intptr intptr intptr domainboundilstubclass il stub reversepinvoke interop winhttp winhttpclosehandle intptr interop winhttp winhttpclosehandle intptr interop winhttp safewinhttphandle releasehandle system runtime interopservices safehandle internalfinalize system runtime interopservices safehandle finalize winhttphandler handleasyncexception exception object exception type system nullreferenceexception message object reference not set to an instance of an object innerexception stacktrace generated system net http winhttphandler handleasyncexception system net http winhttprequeststate system exception system net http system net http winhttphandler d movenext system private corelib system runtime exceptionservices exceptiondispatchinfo throw system private corelib system threading executioncontext run system threading executioncontext system threading contextcallback system object system private corelib system threading threadpoolworkqueue dispatch thread id os id locks thread is alive last exception system executionengineexception null inlinedcallframe inlinedcallframe domainboundilstubclass il stub pinvoke intptr interop winhttp safewinhttphandle releasehandle gcframe gcframe helpermethodframe system net http winhttpresponsestream dispose boolean system io stream close system net http nowritenoseekstreamcontent c b system threading tasks task system object system threading executioncontext run system threading executioncontext system threading contextcallback system object system threading tasks task executewiththreadlocal system threading tasks task byref system threading tasks threadpooltaskscheduler tryexecutetaskinline system threading tasks task boolean system threading tasks taskscheduler tryruninline system threading tasks task boolean system threading tasks taskcontinuation inlineifpossibleorelsequeue system threading tasks task boolean system threading tasks task runcontinuations system object system threading tasks task trysetresult system threading tasks voidtaskresult system runtime compilerservices asynctaskmethodbuilder setexistingtaskresult system threading tasks voidtaskresult system runtime compilerservices asynctaskmethodbuilder setresult system threading tasks task system net http winhttpresponsestream d movenext system threading executioncontext run system threading executioncontext system threading contextcallback system object system threading executioncontext run system threading executioncontext system threading contextcallback system object system threading tasks task executewiththreadlocal system threading tasks task byref system threading threadpoolworkqueue dispatch some notes on the usage of httpclient shared instance of httpclienthandler as static readonly httpmessagehandler most often invoked methods public object invoke string method type returntype null object parameters null public async task invokeasync string method type returntype null object parameters null cancellationtoken cancellationtoken default cancellationtoken the core functionality is implemented by async task getresponseasync instantiates new instance of httpclient on every call as new httpclient webserverinvoker handler false where webserverinvoker handler is the shared static instance awaits for postasync result a timed cancellationtoken is provided always disposes httpclient instance at the end of the call note that synchronous public object invoke enforces its own timeout while waiting for invokeasync task result it cancels the cancellationtokensource if the timeout is hit in turn cancelling any pending httpclient operation and immediately disposing of httpclient instance the timeout is provided by the caller it ranges from seconds to minutes formatting changes by karelz
| 1
|
2,971
| 30,697,640,893
|
IssuesEvent
|
2023-07-26 19:58:17
|
rapidsai/cudf
|
https://api.github.com/repos/rapidsai/cudf
|
closed
|
[BUG] RLE encoded booleans are not loaded properly from Parquet
|
bug 0 - Backlog libcudf cuIO helps: Spark Reliability
|
**Describe the bug**
Using libcudf to load the [rle_boolean_encoding.parquet file from apache/parquet-testing](https://github.com/apache/parquet-testing/blob/master/data/rle_boolean_encoding.parquet) results in a table with no nulls, but the parquet-cli tools shows that this file contains a number of null booleans.
**Steps/Code to reproduce bug**
Load the rle_boolean_encoding and note the column null count is 0 when it should be 6.
**Expected behavior**
For reference, here's the values that are expected based on the output of the [parquet-cli tool](https://github.com/apache/parquet-mr/tree/master/parquet-cli):
```
$ java -cp '/home/jlowe/src/parquet-mr/parquet-cli/target/parquet-cli-1.12.2.jar:/home/jlowe/src/parquet-mr/parquet-cli/target/dependency/*' org.apache.parquet.cli.Main cat parquet-testing/data/rle_boolean_encoding.parquet
{"datatype_boolean": true}
{"datatype_boolean": false}
{"datatype_boolean": null}
{"datatype_boolean": true}
{"datatype_boolean": true}
{"datatype_boolean": false}
{"datatype_boolean": false}
{"datatype_boolean": true}
{"datatype_boolean": true}
{"datatype_boolean": true}
{"datatype_boolean": false}
{"datatype_boolean": false}
{"datatype_boolean": true}
{"datatype_boolean": true}
{"datatype_boolean": false}
{"datatype_boolean": null}
{"datatype_boolean": true}
{"datatype_boolean": true}
{"datatype_boolean": false}
{"datatype_boolean": false}
{"datatype_boolean": true}
{"datatype_boolean": true}
{"datatype_boolean": false}
{"datatype_boolean": null}
{"datatype_boolean": true}
{"datatype_boolean": true}
{"datatype_boolean": false}
{"datatype_boolean": false}
{"datatype_boolean": true}
{"datatype_boolean": true}
{"datatype_boolean": true}
{"datatype_boolean": false}
{"datatype_boolean": false}
{"datatype_boolean": false}
{"datatype_boolean": false}
{"datatype_boolean": true}
{"datatype_boolean": true}
{"datatype_boolean": false}
{"datatype_boolean": null}
{"datatype_boolean": true}
{"datatype_boolean": true}
{"datatype_boolean": false}
{"datatype_boolean": false}
{"datatype_boolean": true}
{"datatype_boolean": true}
{"datatype_boolean": true}
{"datatype_boolean": false}
{"datatype_boolean": false}
{"datatype_boolean": null}
{"datatype_boolean": true}
{"datatype_boolean": true}
{"datatype_boolean": false}
{"datatype_boolean": false}
{"datatype_boolean": true}
{"datatype_boolean": true}
{"datatype_boolean": true}
{"datatype_boolean": false}
{"datatype_boolean": true}
{"datatype_boolean": true}
{"datatype_boolean": false}
{"datatype_boolean": null}
{"datatype_boolean": true}
{"datatype_boolean": true}
{"datatype_boolean": false}
{"datatype_boolean": false}
{"datatype_boolean": true}
{"datatype_boolean": true}
{"datatype_boolean": true}
```
|
True
|
[BUG] RLE encoded booleans are not loaded properly from Parquet - **Describe the bug**
Using libcudf to load the [rle_boolean_encoding.parquet file from apache/parquet-testing](https://github.com/apache/parquet-testing/blob/master/data/rle_boolean_encoding.parquet) results in a table with no nulls, but the parquet-cli tools shows that this file contains a number of null booleans.
**Steps/Code to reproduce bug**
Load the rle_boolean_encoding and note the column null count is 0 when it should be 6.
**Expected behavior**
For reference, here's the values that are expected based on the output of the [parquet-cli tool](https://github.com/apache/parquet-mr/tree/master/parquet-cli):
```
$ java -cp '/home/jlowe/src/parquet-mr/parquet-cli/target/parquet-cli-1.12.2.jar:/home/jlowe/src/parquet-mr/parquet-cli/target/dependency/*' org.apache.parquet.cli.Main cat parquet-testing/data/rle_boolean_encoding.parquet
{"datatype_boolean": true}
{"datatype_boolean": false}
{"datatype_boolean": null}
{"datatype_boolean": true}
{"datatype_boolean": true}
{"datatype_boolean": false}
{"datatype_boolean": false}
{"datatype_boolean": true}
{"datatype_boolean": true}
{"datatype_boolean": true}
{"datatype_boolean": false}
{"datatype_boolean": false}
{"datatype_boolean": true}
{"datatype_boolean": true}
{"datatype_boolean": false}
{"datatype_boolean": null}
{"datatype_boolean": true}
{"datatype_boolean": true}
{"datatype_boolean": false}
{"datatype_boolean": false}
{"datatype_boolean": true}
{"datatype_boolean": true}
{"datatype_boolean": false}
{"datatype_boolean": null}
{"datatype_boolean": true}
{"datatype_boolean": true}
{"datatype_boolean": false}
{"datatype_boolean": false}
{"datatype_boolean": true}
{"datatype_boolean": true}
{"datatype_boolean": true}
{"datatype_boolean": false}
{"datatype_boolean": false}
{"datatype_boolean": false}
{"datatype_boolean": false}
{"datatype_boolean": true}
{"datatype_boolean": true}
{"datatype_boolean": false}
{"datatype_boolean": null}
{"datatype_boolean": true}
{"datatype_boolean": true}
{"datatype_boolean": false}
{"datatype_boolean": false}
{"datatype_boolean": true}
{"datatype_boolean": true}
{"datatype_boolean": true}
{"datatype_boolean": false}
{"datatype_boolean": false}
{"datatype_boolean": null}
{"datatype_boolean": true}
{"datatype_boolean": true}
{"datatype_boolean": false}
{"datatype_boolean": false}
{"datatype_boolean": true}
{"datatype_boolean": true}
{"datatype_boolean": true}
{"datatype_boolean": false}
{"datatype_boolean": true}
{"datatype_boolean": true}
{"datatype_boolean": false}
{"datatype_boolean": null}
{"datatype_boolean": true}
{"datatype_boolean": true}
{"datatype_boolean": false}
{"datatype_boolean": false}
{"datatype_boolean": true}
{"datatype_boolean": true}
{"datatype_boolean": true}
```
|
reli
|
rle encoded booleans are not loaded properly from parquet describe the bug using libcudf to load the results in a table with no nulls but the parquet cli tools shows that this file contains a number of null booleans steps code to reproduce bug load the rle boolean encoding and note the column null count is when it should be expected behavior for reference here s the values that are expected based on the output of the java cp home jlowe src parquet mr parquet cli target parquet cli jar home jlowe src parquet mr parquet cli target dependency org apache parquet cli main cat parquet testing data rle boolean encoding parquet datatype boolean true datatype boolean false datatype boolean null datatype boolean true datatype boolean true datatype boolean false datatype boolean false datatype boolean true datatype boolean true datatype boolean true datatype boolean false datatype boolean false datatype boolean true datatype boolean true datatype boolean false datatype boolean null datatype boolean true datatype boolean true datatype boolean false datatype boolean false datatype boolean true datatype boolean true datatype boolean false datatype boolean null datatype boolean true datatype boolean true datatype boolean false datatype boolean false datatype boolean true datatype boolean true datatype boolean true datatype boolean false datatype boolean false datatype boolean false datatype boolean false datatype boolean true datatype boolean true datatype boolean false datatype boolean null datatype boolean true datatype boolean true datatype boolean false datatype boolean false datatype boolean true datatype boolean true datatype boolean true datatype boolean false datatype boolean false datatype boolean null datatype boolean true datatype boolean true datatype boolean false datatype boolean false datatype boolean true datatype boolean true datatype boolean true datatype boolean false datatype boolean true datatype boolean true datatype boolean false datatype boolean null datatype boolean true datatype boolean true datatype boolean false datatype boolean false datatype boolean true datatype boolean true datatype boolean true
| 1
|
366,170
| 10,817,970,545
|
IssuesEvent
|
2019-11-08 10:54:47
|
pragdave/earmark
|
https://api.github.com/repos/pragdave/earmark
|
closed
|
Blockquotes nested in lists only work with an indentation of 2 spaces
|
Priority: HIGH bug
|
### Input:
```markdown
- list
text indented with 4 spaces
> nested blockquote indented with 4 spaces
```
---
### Expected Output:
HTML output from [Daring Fireball](https://daringfireball.net/projects/markdown/dingus):
```html
<ul>
<li><p>list</p>
<p>text indented with 4 spaces</p>
<blockquote>
<p>nested blockquote indented with 4 spaces</p>
</blockquote></li>
</ul>
```
GFM:
- list
text indented with 4 spaces
> nested blockquote indented with 4 spaces
---
### Actual Output:
```html
<ul>
<li><p>list</p>
<p> text indented with 4 spaces</p>
<p> > nested blockquote indented with 4 spaces</p>
</li>
</ul>
```
- list
text indented with 4 spaces
> nested blockquote indented with 4 spaces
---
Playing around with other markdown parsers, it seems any number of spaces should produce the desired result, but on nested blockquotes, Earmark only works with 2.
|
1.0
|
Blockquotes nested in lists only work with an indentation of 2 spaces - ### Input:
```markdown
- list
text indented with 4 spaces
> nested blockquote indented with 4 spaces
```
---
### Expected Output:
HTML output from [Daring Fireball](https://daringfireball.net/projects/markdown/dingus):
```html
<ul>
<li><p>list</p>
<p>text indented with 4 spaces</p>
<blockquote>
<p>nested blockquote indented with 4 spaces</p>
</blockquote></li>
</ul>
```
GFM:
- list
text indented with 4 spaces
> nested blockquote indented with 4 spaces
---
### Actual Output:
```html
<ul>
<li><p>list</p>
<p> text indented with 4 spaces</p>
<p> > nested blockquote indented with 4 spaces</p>
</li>
</ul>
```
- list
text indented with 4 spaces
> nested blockquote indented with 4 spaces
---
Playing around with other markdown parsers, it seems any number of spaces should produce the desired result, but on nested blockquotes, Earmark only works with 2.
|
non_reli
|
blockquotes nested in lists only work with an indentation of spaces input markdown list text indented with spaces nested blockquote indented with spaces expected output html output from html list text indented with spaces nested blockquote indented with spaces gfm list text indented with spaces nested blockquote indented with spaces actual output html list text indented with spaces gt nested blockquote indented with spaces list text indented with spaces gt nested blockquote indented with spaces playing around with other markdown parsers it seems any number of spaces should produce the desired result but on nested blockquotes earmark only works with
| 0
|
352,996
| 25,094,903,840
|
IssuesEvent
|
2022-11-08 09:28:23
|
precice/precice
|
https://api.github.com/repos/precice/precice
|
opened
|
Clean up IMVJ acceleration
|
documentation maintainability breaking change
|
## Problem
The IMVJ implementation has many different variants, for historic reasons (we developed the method in multiple steps) and for research reasons (we wanted to compare different variants). However, quite naturally, this led to the situation that:
- Not all variants are used, some are even discouraged.
- We have a [bad test coverage](https://app.codecov.io/gh/precice/precice/blob/develop/src/acceleration/MVQNAcceleration.cpp).
- Documentation is not ideal, see also #1064.
Other issues:
- We use `MVQN` in the code, which is inconsistent with `IQNILS` and with the configuration (where we use `IQN-IMVJ` as name already, see [config ref](https://precice.org/configuration-xml-reference.html#accelerationiqn-imvj)).
- The "cyclic communication" we use in `ParallelMatrixOperations` is hacky and gives problems regularly. IIRC, this functionality is only needed for a sub-optimal variant of IMVJ.
https://github.com/precice/precice/blob/bee47b164e28e6e5936e9b46de39d81cd64c42fd/src/acceleration/impl/ParallelMatrixOperations.hpp#L310-L314
## Solution
Carefully study which variants we want to keep. Test and document these and remove the rest.
## Connected issues
- #885
|
1.0
|
Clean up IMVJ acceleration - ## Problem
The IMVJ implementation has many different variants, for historic reasons (we developed the method in multiple steps) and for research reasons (we wanted to compare different variants). However, quite naturally, this led to the situation that:
- Not all variants are used, some are even discouraged.
- We have a [bad test coverage](https://app.codecov.io/gh/precice/precice/blob/develop/src/acceleration/MVQNAcceleration.cpp).
- Documentation is not ideal, see also #1064.
Other issues:
- We use `MVQN` in the code, which is inconsistent with `IQNILS` and with the configuration (where we use `IQN-IMVJ` as name already, see [config ref](https://precice.org/configuration-xml-reference.html#accelerationiqn-imvj)).
- The "cyclic communication" we use in `ParallelMatrixOperations` is hacky and gives problems regularly. IIRC, this functionality is only needed for a sub-optimal variant of IMVJ.
https://github.com/precice/precice/blob/bee47b164e28e6e5936e9b46de39d81cd64c42fd/src/acceleration/impl/ParallelMatrixOperations.hpp#L310-L314
## Solution
Carefully study which variants we want to keep. Test and document these and remove the rest.
## Connected issues
- #885
|
non_reli
|
clean up imvj acceleration problem the imvj implementation has many different variants for historic reasons we developed the method in multiple steps and for research reasons we wanted to compare different variants however quite naturally this led to the situation that not all variants are used some are even discouraged we have a documentation is not ideal see also other issues we use mvqn in the code which is inconsistent with iqnils and with the configuration where we use iqn imvj as name already see the cyclic communication we use in parallelmatrixoperations is hacky and gives problems regularly iirc this functionality is only needed for a sub optimal variant of imvj solution carefully study which variants we want to keep test and document these and remove the rest connected issues
| 0
|
180,467
| 6,650,139,215
|
IssuesEvent
|
2017-09-28 15:22:13
|
huridocs/uwazi
|
https://api.github.com/repos/huridocs/uwazi
|
closed
|
Elastic reindexing has been giving silent errors and there are ghost files ON THE DATABASE!
|
Priority: Medium Status: Review needed Status: Sprint Type: Bug Type: Question
|
For some time, there were errors during document saves, deletes and editions. This happened around January 2017.
There are documents on the Database with files no longer present on the hard drive. Those files are not being correctly indexed, and therefore do not appear in Elastic. But once a correct migration takes out the fullText of those ghost files, they will be indexed and REAPPEAR on the libraries and upload sections, potentially duplicating info.
We need to figure out a way of dealing with this, options including allowing the documents to get indexed and then rely on clients to delete manually. Other option is to assume that this documents have been lost and delete them without any client interaction.
This needs discussion.
|
1.0
|
Elastic reindexing has been giving silent errors and there are ghost files ON THE DATABASE! - For some time, there were errors during document saves, deletes and editions. This happened around January 2017.
There are documents on the Database with files no longer present on the hard drive. Those files are not being correctly indexed, and therefore do not appear in Elastic. But once a correct migration takes out the fullText of those ghost files, they will be indexed and REAPPEAR on the libraries and upload sections, potentially duplicating info.
We need to figure out a way of dealing with this, options including allowing the documents to get indexed and then rely on clients to delete manually. Other option is to assume that this documents have been lost and delete them without any client interaction.
This needs discussion.
|
non_reli
|
elastic reindexing has been giving silent errors and there are ghost files on the database for some time there were errors during document saves deletes and editions this happened around january there are documents on the database with files no longer present on the hard drive those files are not being correctly indexed and therefore do not appear in elastic but once a correct migration takes out the fulltext of those ghost files they will be indexed and reappear on the libraries and upload sections potentially duplicating info we need to figure out a way of dealing with this options including allowing the documents to get indexed and then rely on clients to delete manually other option is to assume that this documents have been lost and delete them without any client interaction this needs discussion
| 0
|
1,907
| 21,640,260,118
|
IssuesEvent
|
2022-05-05 18:00:55
|
Azure/azure-sdk
|
https://api.github.com/repos/Azure/azure-sdk
|
closed
|
[stress testing] Event Hubs - send and receive for 1 week with network stress
|
pillar-reliability Stress
|
Send and receive for 1 week, with network stress via chaos-mesh.
This is a very basic test - single program, single process, send and receive. The only goal here is just to make sure that your library can weather the storm of network disconnects and reconnects.
Some bonus points, if you get the first basic bit done:
- [ ] Break out your producer and consumer into separate processes
- [ ] Have your consumers scale up and down on a regular basis (test load balancing)
|
True
|
[stress testing] Event Hubs - send and receive for 1 week with network stress - Send and receive for 1 week, with network stress via chaos-mesh.
This is a very basic test - single program, single process, send and receive. The only goal here is just to make sure that your library can weather the storm of network disconnects and reconnects.
Some bonus points, if you get the first basic bit done:
- [ ] Break out your producer and consumer into separate processes
- [ ] Have your consumers scale up and down on a regular basis (test load balancing)
|
reli
|
event hubs send and receive for week with network stress send and receive for week with network stress via chaos mesh this is a very basic test single program single process send and receive the only goal here is just to make sure that your library can weather the storm of network disconnects and reconnects some bonus points if you get the first basic bit done break out your producer and consumer into separate processes have your consumers scale up and down on a regular basis test load balancing
| 1
|
4,775
| 3,883,184,255
|
IssuesEvent
|
2016-04-13 13:02:16
|
lionheart/openradar-mirror
|
https://api.github.com/repos/lionheart/openradar-mirror
|
opened
|
20579935: Xcode 6.3: Setting background color of a button on interface builder renders it wrong
|
classification:ui/usability reproducible:always status:open
|
#### Description
Summary:
If we set up the background color of a couple of buttons on a storyboard the colors look slightly darker than the correct ones; but setting the values via code shows the correct colors when running both on device and simulator.
Steps to Reproduce:
Set the background color of a button via Storyboard to RGB(0,159,242)
Compile and run; see the rendered color (take a screenshot).
The on viewDidLoad or wherever; even on the button’s action if you want to set the background color of the button to RGB(0,159,242) via code, compile and run and notice how the colors are render differently. (take a screenshot).
Open up Adobe CC and then pickcolor both background colors and compare; notice how the values set via code match the correct RGB values but the color set on IB is off
Expected Results:
Setting the background color of a button via IB or code should show the exact same color.
Actual Results:
The colors when set via IB are slightly darker than when set via code.
Notes:
This is HIGHLY critical since we try most of the UI via IB and we set the RGB or HEX colors our designers send to us from PS directly into Xcode and the wrong colors are sometimes hard to perceive but overall WRONG and the tools should correctly render the values specified.
-
Product Version: Xcode 6.3 (6D570)
Created: 2015-04-16T23:45:29.005490
Originated: 2015-04-16T17:45:00
Open Radar Link: http://www.openradar.me/20579935
|
True
|
20579935: Xcode 6.3: Setting background color of a button on interface builder renders it wrong - #### Description
Summary:
If we set up the background color of a couple of buttons on a storyboard the colors look slightly darker than the correct ones; but setting the values via code shows the correct colors when running both on device and simulator.
Steps to Reproduce:
Set the background color of a button via Storyboard to RGB(0,159,242)
Compile and run; see the rendered color (take a screenshot).
The on viewDidLoad or wherever; even on the button’s action if you want to set the background color of the button to RGB(0,159,242) via code, compile and run and notice how the colors are render differently. (take a screenshot).
Open up Adobe CC and then pickcolor both background colors and compare; notice how the values set via code match the correct RGB values but the color set on IB is off
Expected Results:
Setting the background color of a button via IB or code should show the exact same color.
Actual Results:
The colors when set via IB are slightly darker than when set via code.
Notes:
This is HIGHLY critical since we try most of the UI via IB and we set the RGB or HEX colors our designers send to us from PS directly into Xcode and the wrong colors are sometimes hard to perceive but overall WRONG and the tools should correctly render the values specified.
-
Product Version: Xcode 6.3 (6D570)
Created: 2015-04-16T23:45:29.005490
Originated: 2015-04-16T17:45:00
Open Radar Link: http://www.openradar.me/20579935
|
non_reli
|
xcode setting background color of a button on interface builder renders it wrong description summary if we set up the background color of a couple of buttons on a storyboard the colors look slightly darker than the correct ones but setting the values via code shows the correct colors when running both on device and simulator steps to reproduce set the background color of a button via storyboard to rgb compile and run see the rendered color take a screenshot the on viewdidload or wherever even on the button’s action if you want to set the background color of the button to rgb via code compile and run and notice how the colors are render differently take a screenshot open up adobe cc and then pickcolor both background colors and compare notice how the values set via code match the correct rgb values but the color set on ib is off expected results setting the background color of a button via ib or code should show the exact same color actual results the colors when set via ib are slightly darker than when set via code notes this is highly critical since we try most of the ui via ib and we set the rgb or hex colors our designers send to us from ps directly into xcode and the wrong colors are sometimes hard to perceive but overall wrong and the tools should correctly render the values specified product version xcode created originated open radar link
| 0
|
307,314
| 9,415,423,191
|
IssuesEvent
|
2019-04-10 12:37:28
|
WoWManiaUK/Blackwing-Lair
|
https://api.github.com/repos/WoWManiaUK/Blackwing-Lair
|
closed
|
[NPC/Trainer] Moordo - Azuremyst Isle
|
Fixed Confirmed Fixed in Dev Priority zone 1-20
|
**Links:**
[Moordo](https://www.wowhead.com/npc=17442/moordo)
**What is happening:**
He will not train me
**What should happen:**
He has to train me
|
1.0
|
[NPC/Trainer] Moordo - Azuremyst Isle - **Links:**
[Moordo](https://www.wowhead.com/npc=17442/moordo)
**What is happening:**
He will not train me
**What should happen:**
He has to train me
|
non_reli
|
moordo azuremyst isle links what is happening he will not train me what should happen he has to train me
| 0
|
2,125
| 23,596,536,226
|
IssuesEvent
|
2022-08-23 19:49:51
|
Azure/azure-sdk-for-java
|
https://api.github.com/repos/Azure/azure-sdk-for-java
|
closed
|
Azure Core AMQP Nickel+ Semester Reliability Improvements
|
Client Epic pillar-reliability amqp
|
## Backlog
### Reliability Improvements (bug fixes)
- [x] #20344
- [x] #20291
- [x] #20380
- [x] #22500
- [x] #21852
- [x] #20660
- [x] #18890
- [x] #16127
- [x] #20640
- [x] #19281
- [x] Fix retry handling on transient errors (we are not consistently re-creating the connection).
- [x] #20790
### Performance
- [x] #20841
- [ ] #20852
- [ ] #22866
- [ ] #22867
- [x] #20828
- [x] #20791
### Long-running Tests
- [x] #20986
- [x] #20838
- [x] #20784
- [x] #20826
- [x] #20834
- [x] #22869
- [x] #20829 Event Hubs Service Stress Tests. The service team owns a set of service tests. Investigate failures in that.
### Diagnosability/Troubleshooting Improvements
- [ ] #23090
- [ ] #20835
- [ ] #20836
- [x] #20837
- [ ] #3806
### Long-term Maintainability Features
- [x] #20825
- [x] #19221
- [ ] Migrate Service Bus processors
- [ ] Migrate Event Hubs processors
- [ ] #5478
|
True
|
Azure Core AMQP Nickel+ Semester Reliability Improvements - ## Backlog
### Reliability Improvements (bug fixes)
- [x] #20344
- [x] #20291
- [x] #20380
- [x] #22500
- [x] #21852
- [x] #20660
- [x] #18890
- [x] #16127
- [x] #20640
- [x] #19281
- [x] Fix retry handling on transient errors (we are not consistently re-creating the connection).
- [x] #20790
### Performance
- [x] #20841
- [ ] #20852
- [ ] #22866
- [ ] #22867
- [x] #20828
- [x] #20791
### Long-running Tests
- [x] #20986
- [x] #20838
- [x] #20784
- [x] #20826
- [x] #20834
- [x] #22869
- [x] #20829 Event Hubs Service Stress Tests. The service team owns a set of service tests. Investigate failures in that.
### Diagnosability/Troubleshooting Improvements
- [ ] #23090
- [ ] #20835
- [ ] #20836
- [x] #20837
- [ ] #3806
### Long-term Maintainability Features
- [x] #20825
- [x] #19221
- [ ] Migrate Service Bus processors
- [ ] Migrate Event Hubs processors
- [ ] #5478
|
reli
|
azure core amqp nickel semester reliability improvements backlog reliability improvements bug fixes fix retry handling on transient errors we are not consistently re creating the connection performance long running tests event hubs service stress tests the service team owns a set of service tests investigate failures in that diagnosability troubleshooting improvements long term maintainability features migrate service bus processors migrate event hubs processors
| 1
|
150,755
| 13,358,152,311
|
IssuesEvent
|
2020-08-31 11:09:38
|
JojiKoike/saifu
|
https://api.github.com/repos/JojiKoike/saifu
|
closed
|
DB Design (Logical)
|
documentation enhancement
|
**Is your feature request related to a problem? Please describe.**
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
- None
**Describe the solution you'd like**
A clear and concise description of what you want to happen.
- Listed Entities and It's Attributes and Defined Relation Ship between Entities.
**Describe alternatives you've considered**
A clear and concise description of any alternative solutions or features you've considered.
- None
**Additional context**
Add any other context or screenshots about the feature request here.
- None
|
1.0
|
DB Design (Logical) - **Is your feature request related to a problem? Please describe.**
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
- None
**Describe the solution you'd like**
A clear and concise description of what you want to happen.
- Listed Entities and It's Attributes and Defined Relation Ship between Entities.
**Describe alternatives you've considered**
A clear and concise description of any alternative solutions or features you've considered.
- None
**Additional context**
Add any other context or screenshots about the feature request here.
- None
|
non_reli
|
db design logical is your feature request related to a problem please describe a clear and concise description of what the problem is ex i m always frustrated when none describe the solution you d like a clear and concise description of what you want to happen listed entities and it s attributes and defined relation ship between entities describe alternatives you ve considered a clear and concise description of any alternative solutions or features you ve considered none additional context add any other context or screenshots about the feature request here none
| 0
|
95,953
| 3,962,607,544
|
IssuesEvent
|
2016-05-02 17:27:24
|
PowerPointLabs/PowerPointLabs
|
https://api.github.com/repos/PowerPointLabs/PowerPointLabs
|
closed
|
Enhance PSL document
|
Difficulty.Moderate Feature.Website Priority.Medium
|
http://www.comp.nus.edu.sg/~pptlabs/docs.html#picture-slides-lab
a.
search for "Use a Browser to search in Google Image Search" and a screenshot to demo drag and drop can be seen.
the screenshot provided is not very intuitive. It's better to have an animated gif to demo drag and drop.
this may help:
http://www.cockos.com/licecap/
b.
some screenshots don't look very attractive, better make it look fancy
|
1.0
|
Enhance PSL document - http://www.comp.nus.edu.sg/~pptlabs/docs.html#picture-slides-lab
a.
search for "Use a Browser to search in Google Image Search" and a screenshot to demo drag and drop can be seen.
the screenshot provided is not very intuitive. It's better to have an animated gif to demo drag and drop.
this may help:
http://www.cockos.com/licecap/
b.
some screenshots don't look very attractive, better make it look fancy
|
non_reli
|
enhance psl document a search for use a browser to search in google image search and a screenshot to demo drag and drop can be seen the screenshot provided is not very intuitive it s better to have an animated gif to demo drag and drop this may help b some screenshots don t look very attractive better make it look fancy
| 0
|
1,761
| 19,561,570,610
|
IssuesEvent
|
2022-01-03 16:55:05
|
livepeer/livepeer-com
|
https://api.github.com/repos/livepeer/livepeer-com
|
closed
|
Get SIN back in rotation
|
site reliability
|
We had two HLS Analyzer alerts on 12/28 and 12/29 related to SIN. When we attempted playback, we found that playback wasn't smooth, so we removed it from the DNS.
|
True
|
Get SIN back in rotation - We had two HLS Analyzer alerts on 12/28 and 12/29 related to SIN. When we attempted playback, we found that playback wasn't smooth, so we removed it from the DNS.
|
reli
|
get sin back in rotation we had two hls analyzer alerts on and related to sin when we attempted playback we found that playback wasn t smooth so we removed it from the dns
| 1
|
119,129
| 15,416,706,977
|
IssuesEvent
|
2021-03-05 05:42:47
|
wordpress-mobile/WordPress-iOS
|
https://api.github.com/repos/wordpress-mobile/WordPress-iOS
|
opened
|
Small Reader Improvements: Topics Picker Empty State
|
Needs Design New Reader iOS [Type] Enhancement
|
Related to #15806
This issue is about showing some illustration and copy that there are no recommendations left on an empty state.
Start Instructions (⚠️):
1. Wait for @mbshakti to provide illustration and copy.
2. Remove the `Needs Design` label.
3. Start this issue.
|
1.0
|
Small Reader Improvements: Topics Picker Empty State - Related to #15806
This issue is about showing some illustration and copy that there are no recommendations left on an empty state.
Start Instructions (⚠️):
1. Wait for @mbshakti to provide illustration and copy.
2. Remove the `Needs Design` label.
3. Start this issue.
|
non_reli
|
small reader improvements topics picker empty state related to this issue is about showing some illustration and copy that there are no recommendations left on an empty state start instructions ⚠️ wait for mbshakti to provide illustration and copy remove the needs design label start this issue
| 0
|
400,942
| 27,308,620,467
|
IssuesEvent
|
2023-02-24 10:19:15
|
f-lab-edu/ticket-seller
|
https://api.github.com/repos/f-lab-edu/ticket-seller
|
opened
|
대기 서버 구상 - (4), 입장권 검증 로직 추가
|
Documentation
|
<img width="1070" alt="image" src="https://user-images.githubusercontent.com/89735640/221153544-f1edb59f-9f38-486f-a9dc-b9aa66574de2.png">
1. 입장권 검증 로직 추가
2. 대기열 폴링이 끝나면 서버에서 포워딩 하지않고, 클라이언트(유저)가 발급된 입장권(JWT 포함)을 들고 예약 요청 하도록 로직 수정
3. cutoff 대신 cutoff_start, cutoff_end로 기준을 늘려 유저 수 지속 순증 문제 보완
|
1.0
|
대기 서버 구상 - (4), 입장권 검증 로직 추가 - <img width="1070" alt="image" src="https://user-images.githubusercontent.com/89735640/221153544-f1edb59f-9f38-486f-a9dc-b9aa66574de2.png">
1. 입장권 검증 로직 추가
2. 대기열 폴링이 끝나면 서버에서 포워딩 하지않고, 클라이언트(유저)가 발급된 입장권(JWT 포함)을 들고 예약 요청 하도록 로직 수정
3. cutoff 대신 cutoff_start, cutoff_end로 기준을 늘려 유저 수 지속 순증 문제 보완
|
non_reli
|
대기 서버 구상 입장권 검증 로직 추가 img width alt image src 입장권 검증 로직 추가 대기열 폴링이 끝나면 서버에서 포워딩 하지않고 클라이언트 유저 가 발급된 입장권 jwt 포함 을 들고 예약 요청 하도록 로직 수정 cutoff 대신 cutoff start cutoff end로 기준을 늘려 유저 수 지속 순증 문제 보완
| 0
|
1,139
| 13,282,460,422
|
IssuesEvent
|
2020-08-23 23:01:39
|
sohaibaslam/learning_site
|
https://api.github.com/repos/sohaibaslam/learning_site
|
opened
|
Broken Crawlers 24, Aug 2020
|
crawler broken/unreliable
|
1. **abcmart kr(100%)**
1. **accessorize de(100%)/fr(100%)**
1. **additionelle ca(100%)/us(100%)**
1. **adolfodominguez de(100%)**
1. **aldo eu(100%)**
1. **americaneagle ca(100%)**
1. **ami ca(100%)/ch(100%)/cn(100%)/de(100%)/dk(100%)/fr(100%)/it(100%)/jp(100%)/kr(100%)/li(100%)/mx(100%)/pl(100%)/ru(100%)/se(100%)/uk(100%)/us(100%)**
1. **anayi jp(100%)**
1. **anthropologie de(100%)/fr(100%)/uk(100%)**
1. **asos ae(100%)/au(100%)/ch(100%)/cn(100%)/hk(100%)/id(100%)/my(100%)/nl(100%)/ph(100%)/pl(100%)/ru(100%)/sa(100%)/sg(100%)/th(100%)/vn(100%)**
1. **babyshop ae(100%)/sa(100%)**
1. **baur de(100%)**
1. **bershka sv(100%)**
1. **browns ae(100%)/au(100%)/ca(100%)/cn(100%)/dk(100%)/eu(100%)/hk(100%)/jp(100%)/kr(100%)/no(100%)/pl(100%)/ru(100%)/sa(100%)/se(100%)/us(100%)/za(100%)**
1. **burlington us(100%)**
1. **centrepoint sa(100%)**
1. **charlesandkeith th(100%)/uk(100%)**
1. **coldwatercreek us(100%)**
1. **conforama fr(100%)**
1. **converse au(100%)**
1. **cotton au(100%)**
1. **cratebarrel us(100%)**
1. **debenhams au(100%)/ca(100%)/ch(100%)/dk(100%)/eu(100%)/no(100%)/nz(100%)/se(100%)/sg(100%)/us(100%)**
1. **destinationmaternity us(100%)**
1. **dwsports uk(100%)**
1. **footaction us(100%)**
1. **footlocker be(100%)/de(100%)/dk(100%)/es(100%)/fr(100%)/it(100%)/lu(100%)/nl(100%)/no(100%)**
1. **gstar au(100%)**
1. **hermes at(100%)/ca(100%)/de(100%)/es(100%)/fr(100%)/it(100%)/nl(100%)/pt(100%)/se(100%)/us(100%)**
1. **hollister cn(100%)**
1. **kmart au(100%)**
1. **lanvin cn(100%)**
1. **lcwaikiki tr(100%)**
1. **lee au(100%)**
1. **lifestylestores in(100%)**
1. **lodenfrey de(100%)**
1. **luckybrand ca(100%)**
1. **luigibertolli br(100%)**
1. **luisaspagnoli fr(100%)/it(100%)/jp(100%)/uk(100%)/us(100%)**
1. **made ch(100%)/de(100%)/es(100%)/nl(100%)/uk(100%)**
1. **manyavar in(100%)**
1. **marisa br(100%)**
1. **massimodutti ua(100%)**
1. **maxandco uk(100%)**
1. **maxfashion ae(100%)/bh(100%)/sa(100%)**
1. **maxmara de(100%)/dk(100%)/fr(100%)/it(100%)/jp(100%)/kr(100%)/pl(100%)/se(100%)/uk(100%)/us(100%)**
1. **michaelkors ca(100%)**
1. **mothercare ae(100%)/kw(100%)/sa(100%)**
1. **netaporter hk(100%)**
1. **nike hk(100%)**
1. **ohpolly eu(100%)/uk(100%)**
1. **oysho qa(100%)/sa(100%)**
1. **paige us(100%)**
1. **paulsmith au(100%)/eu(100%)/uk(100%)/us(100%)**
1. **pedrodelhierro es(100%)/eu(100%)/pt(100%)**
1. **peterhahn de(100%)**
1. **poloralphlauren id(100%)**
1. **popup br(100%)**
1. **prada at(100%)/ch(100%)/dk(100%)/gr(100%)/ie(100%)/se(100%)**
1. **prettysecrets in(100%)**
1. **pullandbear qa(100%)/sa(100%)**
1. **rakuten us(100%)**
1. **reserved cz(100%)/de(100%)/ee(100%)/hu(100%)/lt(100%)/lv(100%)/ru(100%)/sk(100%)**
1. **ripley cl(100%)**
1. **roots ca(100%)**
1. **saksfifthavenue mo(100%)**
1. **saksoff5th us(100%)**
1. **shein in(100%)**
1. **simons ca(100%)/us(100%)**
1. **soccer us(100%)**
1. **solebox de(100%)/uk(100%)**
1. **speedo au(100%)**
1. **splashfashions ae(100%)/bh(100%)/sa(100%)**
1. **stefaniamode au(100%)/ca(100%)/dk(100%)/eu(100%)/hk(100%)/it(100%)/jp(100%)/pl(100%)/ru(100%)/se(100%)/tr(100%)/uk(100%)/us(100%)**
1. **stradivarius il(100%)/sa(100%)**
1. **studio uk(100%)**
1. **stylebop de(100%)**
1. **suitsupply kr(100%)**
1. **thenorthface jp(100%)**
1. **theory uk(100%)**
1. **theoutnet jp(100%)**
1. **therake au(100%)/cn(100%)/de(100%)/es(100%)/fr(100%)/in(100%)/it(100%)/nl(100%)/se(100%)/uk(100%)/us(100%)**
1. **tods cn(100%)/gr(100%)/pt(100%)**
1. **tommybahama ae(100%)/bh(100%)/cn(93%)/in(100%)/kr(100%)/ph(100%)/pl(100%)/sa(100%)/sg(100%)/tr(100%)**
1. **topbrands ru(100%)**
1. **ullapopken de(100%)**
1. **underarmour ca(96%)/fi(94%)/hu(81%)/no(100%)/ro(77%)/ru(100%)/si(100%)/ua(100%)/us(81%)**
1. **universal at(100%)**
1. **venteprivee es(100%)/it(100%)**
1. **walmart ca(100%)**
1. **wayfair ca(100%)/de(100%)/uk(100%)**
1. **weekendmaxmara bg(100%)/cz(100%)/dk(100%)/eu(100%)/hu(100%)/it(100%)/ro(100%)/se(100%)/uk(100%)**
1. **witchery au(100%)/nz(100%)**
1. **wittweiden de(100%)**
1. **zalandolounge de(100%)**
1. **zegna it(100%)/uk(100%)/us(100%)**
1. **zilingo ph(100%)/sg(100%)/th(100%)**
1. louisvuitton se(97%)
1. romewe ae(96%)
1. vagabond eu(52%)/pl(51%)/se(51%)/uk(52%)
1. justfab ca(45%)
1. homeessentials uk(37%)
1. oshkosh us(37%)
|
True
|
Broken Crawlers 24, Aug 2020 - 1. **abcmart kr(100%)**
1. **accessorize de(100%)/fr(100%)**
1. **additionelle ca(100%)/us(100%)**
1. **adolfodominguez de(100%)**
1. **aldo eu(100%)**
1. **americaneagle ca(100%)**
1. **ami ca(100%)/ch(100%)/cn(100%)/de(100%)/dk(100%)/fr(100%)/it(100%)/jp(100%)/kr(100%)/li(100%)/mx(100%)/pl(100%)/ru(100%)/se(100%)/uk(100%)/us(100%)**
1. **anayi jp(100%)**
1. **anthropologie de(100%)/fr(100%)/uk(100%)**
1. **asos ae(100%)/au(100%)/ch(100%)/cn(100%)/hk(100%)/id(100%)/my(100%)/nl(100%)/ph(100%)/pl(100%)/ru(100%)/sa(100%)/sg(100%)/th(100%)/vn(100%)**
1. **babyshop ae(100%)/sa(100%)**
1. **baur de(100%)**
1. **bershka sv(100%)**
1. **browns ae(100%)/au(100%)/ca(100%)/cn(100%)/dk(100%)/eu(100%)/hk(100%)/jp(100%)/kr(100%)/no(100%)/pl(100%)/ru(100%)/sa(100%)/se(100%)/us(100%)/za(100%)**
1. **burlington us(100%)**
1. **centrepoint sa(100%)**
1. **charlesandkeith th(100%)/uk(100%)**
1. **coldwatercreek us(100%)**
1. **conforama fr(100%)**
1. **converse au(100%)**
1. **cotton au(100%)**
1. **cratebarrel us(100%)**
1. **debenhams au(100%)/ca(100%)/ch(100%)/dk(100%)/eu(100%)/no(100%)/nz(100%)/se(100%)/sg(100%)/us(100%)**
1. **destinationmaternity us(100%)**
1. **dwsports uk(100%)**
1. **footaction us(100%)**
1. **footlocker be(100%)/de(100%)/dk(100%)/es(100%)/fr(100%)/it(100%)/lu(100%)/nl(100%)/no(100%)**
1. **gstar au(100%)**
1. **hermes at(100%)/ca(100%)/de(100%)/es(100%)/fr(100%)/it(100%)/nl(100%)/pt(100%)/se(100%)/us(100%)**
1. **hollister cn(100%)**
1. **kmart au(100%)**
1. **lanvin cn(100%)**
1. **lcwaikiki tr(100%)**
1. **lee au(100%)**
1. **lifestylestores in(100%)**
1. **lodenfrey de(100%)**
1. **luckybrand ca(100%)**
1. **luigibertolli br(100%)**
1. **luisaspagnoli fr(100%)/it(100%)/jp(100%)/uk(100%)/us(100%)**
1. **made ch(100%)/de(100%)/es(100%)/nl(100%)/uk(100%)**
1. **manyavar in(100%)**
1. **marisa br(100%)**
1. **massimodutti ua(100%)**
1. **maxandco uk(100%)**
1. **maxfashion ae(100%)/bh(100%)/sa(100%)**
1. **maxmara de(100%)/dk(100%)/fr(100%)/it(100%)/jp(100%)/kr(100%)/pl(100%)/se(100%)/uk(100%)/us(100%)**
1. **michaelkors ca(100%)**
1. **mothercare ae(100%)/kw(100%)/sa(100%)**
1. **netaporter hk(100%)**
1. **nike hk(100%)**
1. **ohpolly eu(100%)/uk(100%)**
1. **oysho qa(100%)/sa(100%)**
1. **paige us(100%)**
1. **paulsmith au(100%)/eu(100%)/uk(100%)/us(100%)**
1. **pedrodelhierro es(100%)/eu(100%)/pt(100%)**
1. **peterhahn de(100%)**
1. **poloralphlauren id(100%)**
1. **popup br(100%)**
1. **prada at(100%)/ch(100%)/dk(100%)/gr(100%)/ie(100%)/se(100%)**
1. **prettysecrets in(100%)**
1. **pullandbear qa(100%)/sa(100%)**
1. **rakuten us(100%)**
1. **reserved cz(100%)/de(100%)/ee(100%)/hu(100%)/lt(100%)/lv(100%)/ru(100%)/sk(100%)**
1. **ripley cl(100%)**
1. **roots ca(100%)**
1. **saksfifthavenue mo(100%)**
1. **saksoff5th us(100%)**
1. **shein in(100%)**
1. **simons ca(100%)/us(100%)**
1. **soccer us(100%)**
1. **solebox de(100%)/uk(100%)**
1. **speedo au(100%)**
1. **splashfashions ae(100%)/bh(100%)/sa(100%)**
1. **stefaniamode au(100%)/ca(100%)/dk(100%)/eu(100%)/hk(100%)/it(100%)/jp(100%)/pl(100%)/ru(100%)/se(100%)/tr(100%)/uk(100%)/us(100%)**
1. **stradivarius il(100%)/sa(100%)**
1. **studio uk(100%)**
1. **stylebop de(100%)**
1. **suitsupply kr(100%)**
1. **thenorthface jp(100%)**
1. **theory uk(100%)**
1. **theoutnet jp(100%)**
1. **therake au(100%)/cn(100%)/de(100%)/es(100%)/fr(100%)/in(100%)/it(100%)/nl(100%)/se(100%)/uk(100%)/us(100%)**
1. **tods cn(100%)/gr(100%)/pt(100%)**
1. **tommybahama ae(100%)/bh(100%)/cn(93%)/in(100%)/kr(100%)/ph(100%)/pl(100%)/sa(100%)/sg(100%)/tr(100%)**
1. **topbrands ru(100%)**
1. **ullapopken de(100%)**
1. **underarmour ca(96%)/fi(94%)/hu(81%)/no(100%)/ro(77%)/ru(100%)/si(100%)/ua(100%)/us(81%)**
1. **universal at(100%)**
1. **venteprivee es(100%)/it(100%)**
1. **walmart ca(100%)**
1. **wayfair ca(100%)/de(100%)/uk(100%)**
1. **weekendmaxmara bg(100%)/cz(100%)/dk(100%)/eu(100%)/hu(100%)/it(100%)/ro(100%)/se(100%)/uk(100%)**
1. **witchery au(100%)/nz(100%)**
1. **wittweiden de(100%)**
1. **zalandolounge de(100%)**
1. **zegna it(100%)/uk(100%)/us(100%)**
1. **zilingo ph(100%)/sg(100%)/th(100%)**
1. louisvuitton se(97%)
1. romewe ae(96%)
1. vagabond eu(52%)/pl(51%)/se(51%)/uk(52%)
1. justfab ca(45%)
1. homeessentials uk(37%)
1. oshkosh us(37%)
|
reli
|
broken crawlers aug abcmart kr accessorize de fr additionelle ca us adolfodominguez de aldo eu americaneagle ca ami ca ch cn de dk fr it jp kr li mx pl ru se uk us anayi jp anthropologie de fr uk asos ae au ch cn hk id my nl ph pl ru sa sg th vn babyshop ae sa baur de bershka sv browns ae au ca cn dk eu hk jp kr no pl ru sa se us za burlington us centrepoint sa charlesandkeith th uk coldwatercreek us conforama fr converse au cotton au cratebarrel us debenhams au ca ch dk eu no nz se sg us destinationmaternity us dwsports uk footaction us footlocker be de dk es fr it lu nl no gstar au hermes at ca de es fr it nl pt se us hollister cn kmart au lanvin cn lcwaikiki tr lee au lifestylestores in lodenfrey de luckybrand ca luigibertolli br luisaspagnoli fr it jp uk us made ch de es nl uk manyavar in marisa br massimodutti ua maxandco uk maxfashion ae bh sa maxmara de dk fr it jp kr pl se uk us michaelkors ca mothercare ae kw sa netaporter hk nike hk ohpolly eu uk oysho qa sa paige us paulsmith au eu uk us pedrodelhierro es eu pt peterhahn de poloralphlauren id popup br prada at ch dk gr ie se prettysecrets in pullandbear qa sa rakuten us reserved cz de ee hu lt lv ru sk ripley cl roots ca saksfifthavenue mo us shein in simons ca us soccer us solebox de uk speedo au splashfashions ae bh sa stefaniamode au ca dk eu hk it jp pl ru se tr uk us stradivarius il sa studio uk stylebop de suitsupply kr thenorthface jp theory uk theoutnet jp therake au cn de es fr in it nl se uk us tods cn gr pt tommybahama ae bh cn in kr ph pl sa sg tr topbrands ru ullapopken de underarmour ca fi hu no ro ru si ua us universal at venteprivee es it walmart ca wayfair ca de uk weekendmaxmara bg cz dk eu hu it ro se uk witchery au nz wittweiden de zalandolounge de zegna it uk us zilingo ph sg th louisvuitton se romewe ae vagabond eu pl se uk justfab ca homeessentials uk oshkosh us
| 1
|
1,671
| 24,203,878,944
|
IssuesEvent
|
2022-09-25 00:10:39
|
lkrg-org/lkrg
|
https://api.github.com/repos/lkrg-org/lkrg
|
closed
|
LKRG: ISSUE: IOMMU table can't be found (skipping)
|
portability
|
It loads now, but i see another issue.
[ 70.577995] LKRG: ISSUE: IOMMU table can't be found (skipping)
_Originally posted by @sandikata in https://github.com/lkrg-org/lkrg/issues/225#issuecomment-1228039200_
|
True
|
LKRG: ISSUE: IOMMU table can't be found (skipping) - It loads now, but i see another issue.
[ 70.577995] LKRG: ISSUE: IOMMU table can't be found (skipping)
_Originally posted by @sandikata in https://github.com/lkrg-org/lkrg/issues/225#issuecomment-1228039200_
|
non_reli
|
lkrg issue iommu table can t be found skipping it loads now but i see another issue lkrg issue iommu table can t be found skipping originally posted by sandikata in
| 0
|
74,933
| 9,167,670,294
|
IssuesEvent
|
2019-03-02 15:45:31
|
geocollections/sarv-edit
|
https://api.github.com/repos/geocollections/sarv-edit
|
closed
|
reference detail view layout
|
design
|
Large file icon is not useful, we should use the space to require less scrolling. If the reference has pdf attached, a small icon may be shown along with 'vaata viidet geokogudes'
user and date added / change information should come from update log and be in the bottom of the page (issue #96).
|
1.0
|
reference detail view layout - Large file icon is not useful, we should use the space to require less scrolling. If the reference has pdf attached, a small icon may be shown along with 'vaata viidet geokogudes'
user and date added / change information should come from update log and be in the bottom of the page (issue #96).
|
non_reli
|
reference detail view layout large file icon is not useful we should use the space to require less scrolling if the reference has pdf attached a small icon may be shown along with vaata viidet geokogudes user and date added change information should come from update log and be in the bottom of the page issue
| 0
|
288,688
| 24,927,613,611
|
IssuesEvent
|
2022-10-31 08:55:03
|
hazelcast/hazelcast
|
https://api.github.com/repos/hazelcast/hazelcast
|
opened
|
com.hazelcast.jet.core.MemberReconnectionStressTest.test
|
Type: Test-Failure Source: Internal Module: Jet Team: Platform
|
_master_ (commit 470f95b02543901406fa5e3b232545b5faf8b7c8)
Failed on ZingJDK8: https://jenkins.hazelcast.com/view/Official%20Builds/job/Hazelcast-master-ZingJDK8-nightly/4/testReport/com.hazelcast.jet.core/MemberReconnectionStressTest/test/
<details><summary>Stacktrace:</summary>
```
com.hazelcast.jet.core.JobNotFoundException: Job with id 08df-340e-bca2-0001 not found
at com.hazelcast.jet.impl.JobCoordinationService.lambda$callWithJob$46(JobCoordinationService.java:924)
at com.hazelcast.jet.impl.JobCoordinationService.lambda$submitToCoordinatorThread$55(JobCoordinationService.java:1327)
at com.hazelcast.internal.util.executor.CompletableFutureTask.run(CompletableFutureTask.java:64)
at com.hazelcast.internal.util.executor.CachedExecutorServiceDelegate$Worker.run(CachedExecutorServiceDelegate.java:217)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
at java.lang.Thread.run(Thread.java:807)
at com.hazelcast.internal.util.executor.HazelcastManagedThread.executeRun(HazelcastManagedThread.java:76)
at com.hazelcast.internal.util.executor.HazelcastManagedThread.run(HazelcastManagedThread.java:102)
at ------ submitted from ------.()
at com.hazelcast.internal.util.ExceptionUtil.cloneExceptionWithFixedAsyncStackTrace(ExceptionUtil.java:348)
at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.returnOrThrowWithGetConventions(InvocationFuture.java:112)
at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolveAndThrowIfException(InvocationFuture.java:100)
at com.hazelcast.spi.impl.AbstractInvocationFuture.get(AbstractInvocationFuture.java:617)
at com.hazelcast.jet.impl.JobProxy.getStatus0(JobProxy.java:72)
at com.hazelcast.jet.impl.AbstractJobProxy.getStatus(AbstractJobProxy.java:177)
at com.hazelcast.jet.core.JetTestSupport.lambda$ditchJob$6(JetTestSupport.java:410)
at com.hazelcast.test.HazelcastTestSupport.assertTrueEventually(HazelcastTestSupport.java:1236)
at com.hazelcast.test.HazelcastTestSupport.assertTrueEventually(HazelcastTestSupport.java:1338)
at com.hazelcast.jet.core.JetTestSupport.ditchJob(JetTestSupport.java:409)
at com.hazelcast.jet.core.JetTestSupport.shutdownJobsAndGetLeakedClassLoaders(JetTestSupport.java:134)
at com.hazelcast.jet.core.JetTestSupport.shutdownFactory(JetTestSupport.java:106)
at sun.reflect.GeneratedMethodAccessor373.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:498)
at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:59)
at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12)
at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:56)
at com.hazelcast.test.AbstractHazelcastClassRunner$ThreadDumpAwareRunAfters.evaluate(AbstractHazelcastClassRunner.java:381)
at com.hazelcast.test.DumpBuildInfoOnFailureRule$1.evaluate(DumpBuildInfoOnFailureRule.java:37)
at com.hazelcast.test.jitter.JitterRule$1.evaluate(JitterRule.java:104)
at com.hazelcast.test.metrics.MetricsRule$1.evaluate(MetricsRule.java:63)
at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306)
at org.junit.runners.BlockJUnit4ClassRunner$1.evaluate(BlockJUnit4ClassRunner.java:100)
at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:366)
at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:103)
at com.hazelcast.test.HazelcastSerialClassRunner.runChild(HazelcastSerialClassRunner.java:50)
at com.hazelcast.test.HazelcastSerialClassRunner.runChild(HazelcastSerialClassRunner.java:29)
at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331)
at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79)
at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329)
at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66)
at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293)
at com.hazelcast.test.AfterClassesStatement.evaluate(AfterClassesStatement.java:39)
at com.hazelcast.test.OverridePropertyRule$1.evaluate(OverridePropertyRule.java:66)
at org.junit.internal.runners.statements.FailOnTimeout$CallableStatement.call(FailOnTimeout.java:299)
at org.junit.internal.runners.statements.FailOnTimeout$CallableStatement.call(FailOnTimeout.java:293)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at java.lang.Thread.run(Thread.java:807)
```
</details>
Standard output can be found here - https://s3.console.aws.amazon.com/s3/buckets/j-artifacts/Hazelcast-master-ZingJDK8-nightly/4/Hazelcast-master-ZingJDK8-nightly-4.zip
|
1.0
|
com.hazelcast.jet.core.MemberReconnectionStressTest.test - _master_ (commit 470f95b02543901406fa5e3b232545b5faf8b7c8)
Failed on ZingJDK8: https://jenkins.hazelcast.com/view/Official%20Builds/job/Hazelcast-master-ZingJDK8-nightly/4/testReport/com.hazelcast.jet.core/MemberReconnectionStressTest/test/
<details><summary>Stacktrace:</summary>
```
com.hazelcast.jet.core.JobNotFoundException: Job with id 08df-340e-bca2-0001 not found
at com.hazelcast.jet.impl.JobCoordinationService.lambda$callWithJob$46(JobCoordinationService.java:924)
at com.hazelcast.jet.impl.JobCoordinationService.lambda$submitToCoordinatorThread$55(JobCoordinationService.java:1327)
at com.hazelcast.internal.util.executor.CompletableFutureTask.run(CompletableFutureTask.java:64)
at com.hazelcast.internal.util.executor.CachedExecutorServiceDelegate$Worker.run(CachedExecutorServiceDelegate.java:217)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
at java.lang.Thread.run(Thread.java:807)
at com.hazelcast.internal.util.executor.HazelcastManagedThread.executeRun(HazelcastManagedThread.java:76)
at com.hazelcast.internal.util.executor.HazelcastManagedThread.run(HazelcastManagedThread.java:102)
at ------ submitted from ------.()
at com.hazelcast.internal.util.ExceptionUtil.cloneExceptionWithFixedAsyncStackTrace(ExceptionUtil.java:348)
at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.returnOrThrowWithGetConventions(InvocationFuture.java:112)
at com.hazelcast.spi.impl.operationservice.impl.InvocationFuture.resolveAndThrowIfException(InvocationFuture.java:100)
at com.hazelcast.spi.impl.AbstractInvocationFuture.get(AbstractInvocationFuture.java:617)
at com.hazelcast.jet.impl.JobProxy.getStatus0(JobProxy.java:72)
at com.hazelcast.jet.impl.AbstractJobProxy.getStatus(AbstractJobProxy.java:177)
at com.hazelcast.jet.core.JetTestSupport.lambda$ditchJob$6(JetTestSupport.java:410)
at com.hazelcast.test.HazelcastTestSupport.assertTrueEventually(HazelcastTestSupport.java:1236)
at com.hazelcast.test.HazelcastTestSupport.assertTrueEventually(HazelcastTestSupport.java:1338)
at com.hazelcast.jet.core.JetTestSupport.ditchJob(JetTestSupport.java:409)
at com.hazelcast.jet.core.JetTestSupport.shutdownJobsAndGetLeakedClassLoaders(JetTestSupport.java:134)
at com.hazelcast.jet.core.JetTestSupport.shutdownFactory(JetTestSupport.java:106)
at sun.reflect.GeneratedMethodAccessor373.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:498)
at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:59)
at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12)
at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:56)
at com.hazelcast.test.AbstractHazelcastClassRunner$ThreadDumpAwareRunAfters.evaluate(AbstractHazelcastClassRunner.java:381)
at com.hazelcast.test.DumpBuildInfoOnFailureRule$1.evaluate(DumpBuildInfoOnFailureRule.java:37)
at com.hazelcast.test.jitter.JitterRule$1.evaluate(JitterRule.java:104)
at com.hazelcast.test.metrics.MetricsRule$1.evaluate(MetricsRule.java:63)
at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306)
at org.junit.runners.BlockJUnit4ClassRunner$1.evaluate(BlockJUnit4ClassRunner.java:100)
at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:366)
at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:103)
at com.hazelcast.test.HazelcastSerialClassRunner.runChild(HazelcastSerialClassRunner.java:50)
at com.hazelcast.test.HazelcastSerialClassRunner.runChild(HazelcastSerialClassRunner.java:29)
at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331)
at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79)
at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329)
at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66)
at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293)
at com.hazelcast.test.AfterClassesStatement.evaluate(AfterClassesStatement.java:39)
at com.hazelcast.test.OverridePropertyRule$1.evaluate(OverridePropertyRule.java:66)
at org.junit.internal.runners.statements.FailOnTimeout$CallableStatement.call(FailOnTimeout.java:299)
at org.junit.internal.runners.statements.FailOnTimeout$CallableStatement.call(FailOnTimeout.java:293)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at java.lang.Thread.run(Thread.java:807)
```
</details>
Standard output can be found here - https://s3.console.aws.amazon.com/s3/buckets/j-artifacts/Hazelcast-master-ZingJDK8-nightly/4/Hazelcast-master-ZingJDK8-nightly-4.zip
|
non_reli
|
com hazelcast jet core memberreconnectionstresstest test master commit failed on stacktrace com hazelcast jet core jobnotfoundexception job with id not found at com hazelcast jet impl jobcoordinationservice lambda callwithjob jobcoordinationservice java at com hazelcast jet impl jobcoordinationservice lambda submittocoordinatorthread jobcoordinationservice java at com hazelcast internal util executor completablefuturetask run completablefuturetask java at com hazelcast internal util executor cachedexecutorservicedelegate worker run cachedexecutorservicedelegate java at java util concurrent threadpoolexecutor runworker threadpoolexecutor java at java util concurrent threadpoolexecutor worker run threadpoolexecutor java at java lang thread run thread java at com hazelcast internal util executor hazelcastmanagedthread executerun hazelcastmanagedthread java at com hazelcast internal util executor hazelcastmanagedthread run hazelcastmanagedthread java at submitted from at com hazelcast internal util exceptionutil cloneexceptionwithfixedasyncstacktrace exceptionutil java at com hazelcast spi impl operationservice impl invocationfuture returnorthrowwithgetconventions invocationfuture java at com hazelcast spi impl operationservice impl invocationfuture resolveandthrowifexception invocationfuture java at com hazelcast spi impl abstractinvocationfuture get abstractinvocationfuture java at com hazelcast jet impl jobproxy jobproxy java at com hazelcast jet impl abstractjobproxy getstatus abstractjobproxy java at com hazelcast jet core jettestsupport lambda ditchjob jettestsupport java at com hazelcast test hazelcasttestsupport asserttrueeventually hazelcasttestsupport java at com hazelcast test hazelcasttestsupport asserttrueeventually hazelcasttestsupport java at com hazelcast jet core jettestsupport ditchjob jettestsupport java at com hazelcast jet core jettestsupport shutdownjobsandgetleakedclassloaders jettestsupport java at com hazelcast jet core jettestsupport shutdownfactory jettestsupport java at sun reflect invoke unknown source at sun reflect delegatingmethodaccessorimpl invoke delegatingmethodaccessorimpl java at java lang reflect method invoke method java at org junit runners model frameworkmethod runreflectivecall frameworkmethod java at org junit internal runners model reflectivecallable run reflectivecallable java at org junit runners model frameworkmethod invokeexplosively frameworkmethod java at com hazelcast test abstracthazelcastclassrunner threaddumpawarerunafters evaluate abstracthazelcastclassrunner java at com hazelcast test dumpbuildinfoonfailurerule evaluate dumpbuildinfoonfailurerule java at com hazelcast test jitter jitterrule evaluate jitterrule java at com hazelcast test metrics metricsrule evaluate metricsrule java at org junit runners parentrunner evaluate parentrunner java at org junit runners evaluate java at org junit runners parentrunner runleaf parentrunner java at org junit runners runchild java at com hazelcast test hazelcastserialclassrunner runchild hazelcastserialclassrunner java at com hazelcast test hazelcastserialclassrunner runchild hazelcastserialclassrunner java at org junit runners parentrunner run parentrunner java at org junit runners parentrunner schedule parentrunner java at org junit runners parentrunner runchildren parentrunner java at org junit runners parentrunner access parentrunner java at org junit runners parentrunner evaluate parentrunner java at com hazelcast test afterclassesstatement evaluate afterclassesstatement java at com hazelcast test overridepropertyrule evaluate overridepropertyrule java at org junit internal runners statements failontimeout callablestatement call failontimeout java at org junit internal runners statements failontimeout callablestatement call failontimeout java at java util concurrent futuretask run futuretask java at java lang thread run thread java standard output can be found here
| 0
|
2,053
| 23,092,195,764
|
IssuesEvent
|
2022-07-26 16:04:52
|
StormSurgeLive/asgs
|
https://api.github.com/repos/StormSurgeLive/asgs
|
opened
|
reduce chattiness of ssh on stampede2
|
incremental improvement reliability
|
We're getting a lot of messages like the following in our log files and console when using `ssh` between stampede2 and tacc_tds3:
```
SSH: Server;Ltype: Version;Remote: 129.114.97.179-22;Protocol: 2.0;Client: OpenSSH_8.2p1 Ubuntu-4ubuntu0.5
SSH: Server;Ltype: Version;Remote: 129.114.97.179-22;Protocol: 2.0;Client: OpenSSH_8.2p1 Ubuntu-4ubuntu0.5
SSH: Server;Ltype: Version;Remote: 129.114.97.179-22;Protocol: 2.0;Client: OpenSSH_8.2p1 Ubuntu-4ubuntu0.5
SSH: Server;Ltype: Version;Remote: 129.114.97.179-22;Protocol: 2.0;Client: OpenSSH_8.2p1 Ubuntu-4ubuntu0.5
SSH: Server;Ltype: Version;Remote: 129.114.97.179-22;Protocol: 2.0;Client: OpenSSH_8.2p1 Ubuntu-4ubuntu0.5
SSH: Server;Ltype: Version;Remote: 129.114.97.179-22;Protocol: 2.0;Client: OpenSSH_8.2p1 Ubuntu-4ubuntu0.5
SSH: Server;Ltype: Version;Remote: 129.114.97.179-22;Protocol: 2.0;Client: OpenSSH_8.2p1 Ubuntu-4ubuntu0.5
```
need to find out where this is coming from and how we can turn it off without negatively impacting the general logging of `ssh` activity
|
True
|
reduce chattiness of ssh on stampede2 - We're getting a lot of messages like the following in our log files and console when using `ssh` between stampede2 and tacc_tds3:
```
SSH: Server;Ltype: Version;Remote: 129.114.97.179-22;Protocol: 2.0;Client: OpenSSH_8.2p1 Ubuntu-4ubuntu0.5
SSH: Server;Ltype: Version;Remote: 129.114.97.179-22;Protocol: 2.0;Client: OpenSSH_8.2p1 Ubuntu-4ubuntu0.5
SSH: Server;Ltype: Version;Remote: 129.114.97.179-22;Protocol: 2.0;Client: OpenSSH_8.2p1 Ubuntu-4ubuntu0.5
SSH: Server;Ltype: Version;Remote: 129.114.97.179-22;Protocol: 2.0;Client: OpenSSH_8.2p1 Ubuntu-4ubuntu0.5
SSH: Server;Ltype: Version;Remote: 129.114.97.179-22;Protocol: 2.0;Client: OpenSSH_8.2p1 Ubuntu-4ubuntu0.5
SSH: Server;Ltype: Version;Remote: 129.114.97.179-22;Protocol: 2.0;Client: OpenSSH_8.2p1 Ubuntu-4ubuntu0.5
SSH: Server;Ltype: Version;Remote: 129.114.97.179-22;Protocol: 2.0;Client: OpenSSH_8.2p1 Ubuntu-4ubuntu0.5
```
need to find out where this is coming from and how we can turn it off without negatively impacting the general logging of `ssh` activity
|
reli
|
reduce chattiness of ssh on we re getting a lot of messages like the following in our log files and console when using ssh between and tacc ssh server ltype version remote protocol client openssh ubuntu ssh server ltype version remote protocol client openssh ubuntu ssh server ltype version remote protocol client openssh ubuntu ssh server ltype version remote protocol client openssh ubuntu ssh server ltype version remote protocol client openssh ubuntu ssh server ltype version remote protocol client openssh ubuntu ssh server ltype version remote protocol client openssh ubuntu need to find out where this is coming from and how we can turn it off without negatively impacting the general logging of ssh activity
| 1
|
378,468
| 11,202,892,831
|
IssuesEvent
|
2020-01-04 15:57:09
|
wilcommerce/Wilcommerce.Catalog.Data.EFCore
|
https://api.github.com/repos/wilcommerce/Wilcommerce.Catalog.Data.EFCore
|
closed
|
Enable Lazy Loading to fix navigation properties population
|
priority:critical status:done type:bug
|
Lazy loading must be enabled to allow navigation properties to be populated correctly
|
1.0
|
Enable Lazy Loading to fix navigation properties population - Lazy loading must be enabled to allow navigation properties to be populated correctly
|
non_reli
|
enable lazy loading to fix navigation properties population lazy loading must be enabled to allow navigation properties to be populated correctly
| 0
|
1,456
| 16,343,266,007
|
IssuesEvent
|
2021-05-13 02:20:03
|
emmamei/cdkey
|
https://api.github.com/repos/emmamei/cdkey
|
closed
|
Revisit LOCKON meaning and usage
|
bug reliabilityfix simplification
|
The `LOCKON` define is designed to determine whether to lock the Key on during normal usage, and provide a `Detach` button as warranted, or not to (in the case of Developers for instance).
It also affects the locking on of Outfits when Dolly collapses.
Note that the main menu is most likely full, and another button is dangerous. Note too, that CDKey operators may be used to having a Detach button.
|
True
|
Revisit LOCKON meaning and usage - The `LOCKON` define is designed to determine whether to lock the Key on during normal usage, and provide a `Detach` button as warranted, or not to (in the case of Developers for instance).
It also affects the locking on of Outfits when Dolly collapses.
Note that the main menu is most likely full, and another button is dangerous. Note too, that CDKey operators may be used to having a Detach button.
|
reli
|
revisit lockon meaning and usage the lockon define is designed to determine whether to lock the key on during normal usage and provide a detach button as warranted or not to in the case of developers for instance it also affects the locking on of outfits when dolly collapses note that the main menu is most likely full and another button is dangerous note too that cdkey operators may be used to having a detach button
| 1
|
2,877
| 29,042,698,775
|
IssuesEvent
|
2023-05-13 06:20:19
|
ppy/osu
|
https://api.github.com/repos/ppy/osu
|
opened
|
Mouse cursor may not re-appear if taking screenshot fails
|
type:reliability
|
### Type
Game behaviour
### Bug description
As described here https://github.com/ppy/osu/discussions/23503#discussioncomment-5890198
To force reproduction, apply following diff:
```diff
diff --git a/osu.Game/Graphics/ScreenshotManager.cs b/osu.Game/Graphics/ScreenshotManager.cs
index d799e82bc9..4a8e2526d0 100644
--- a/osu.Game/Graphics/ScreenshotManager.cs
+++ b/osu.Game/Graphics/ScreenshotManager.cs
@@ -90,19 +90,9 @@ public void OnReleased(KeyBindingReleaseEvent<GlobalAction> e)
{
cursorVisibility.Value = false;
- // We need to wait for at most 3 draw nodes to be drawn, following which we can be assured at least one DrawNode has been generated/drawn with the set value
- const int frames_to_wait = 3;
-
- int framesWaited = 0;
-
using (var framesWaitedEvent = new ManualResetEventSlim(false))
{
- ScheduledDelegate waitDelegate = host.DrawThread.Scheduler.AddDelayed(() =>
- {
- if (framesWaited++ >= frames_to_wait)
- // ReSharper disable once AccessToDisposedClosure
- framesWaitedEvent.Set();
- }, 10, true);
+ ScheduledDelegate waitDelegate = host.DrawThread.Scheduler.AddDelayed(() => { }, 10, true);
if (!framesWaitedEvent.Wait(1000))
throw new TimeoutException("Screenshot data did not arrive in a timely fashion");
```
to ensure that the screenshot-taking flow always fails, and then take a screenshot. The mouse cursor will hide for the screenshot but never re-appear again.
### Screenshots or videos
_No response_
### Version
current master
### Logs
not relevant
|
True
|
Mouse cursor may not re-appear if taking screenshot fails - ### Type
Game behaviour
### Bug description
As described here https://github.com/ppy/osu/discussions/23503#discussioncomment-5890198
To force reproduction, apply following diff:
```diff
diff --git a/osu.Game/Graphics/ScreenshotManager.cs b/osu.Game/Graphics/ScreenshotManager.cs
index d799e82bc9..4a8e2526d0 100644
--- a/osu.Game/Graphics/ScreenshotManager.cs
+++ b/osu.Game/Graphics/ScreenshotManager.cs
@@ -90,19 +90,9 @@ public void OnReleased(KeyBindingReleaseEvent<GlobalAction> e)
{
cursorVisibility.Value = false;
- // We need to wait for at most 3 draw nodes to be drawn, following which we can be assured at least one DrawNode has been generated/drawn with the set value
- const int frames_to_wait = 3;
-
- int framesWaited = 0;
-
using (var framesWaitedEvent = new ManualResetEventSlim(false))
{
- ScheduledDelegate waitDelegate = host.DrawThread.Scheduler.AddDelayed(() =>
- {
- if (framesWaited++ >= frames_to_wait)
- // ReSharper disable once AccessToDisposedClosure
- framesWaitedEvent.Set();
- }, 10, true);
+ ScheduledDelegate waitDelegate = host.DrawThread.Scheduler.AddDelayed(() => { }, 10, true);
if (!framesWaitedEvent.Wait(1000))
throw new TimeoutException("Screenshot data did not arrive in a timely fashion");
```
to ensure that the screenshot-taking flow always fails, and then take a screenshot. The mouse cursor will hide for the screenshot but never re-appear again.
### Screenshots or videos
_No response_
### Version
current master
### Logs
not relevant
|
reli
|
mouse cursor may not re appear if taking screenshot fails type game behaviour bug description as described here to force reproduction apply following diff diff diff git a osu game graphics screenshotmanager cs b osu game graphics screenshotmanager cs index a osu game graphics screenshotmanager cs b osu game graphics screenshotmanager cs public void onreleased keybindingreleaseevent e cursorvisibility value false we need to wait for at most draw nodes to be drawn following which we can be assured at least one drawnode has been generated drawn with the set value const int frames to wait int frameswaited using var frameswaitedevent new manualreseteventslim false scheduleddelegate waitdelegate host drawthread scheduler adddelayed if frameswaited frames to wait resharper disable once accesstodisposedclosure frameswaitedevent set true scheduleddelegate waitdelegate host drawthread scheduler adddelayed true if frameswaitedevent wait throw new timeoutexception screenshot data did not arrive in a timely fashion to ensure that the screenshot taking flow always fails and then take a screenshot the mouse cursor will hide for the screenshot but never re appear again screenshots or videos no response version current master logs not relevant
| 1
|
313
| 6,557,158,726
|
IssuesEvent
|
2017-09-06 16:22:52
|
waggle-sensor/beehive-server
|
https://api.github.com/repos/waggle-sensor/beehive-server
|
closed
|
Configure nginx to use caching
|
reliability
|
For better page performance, it seems to make sense to have nginx cache pages for a short amount of time (5 minutes or so) so they don't have to be regenerated every time. This would also allow nginx to serve the last cached version of a page if beehive-flask goes down briefly and is restarting.
|
True
|
Configure nginx to use caching - For better page performance, it seems to make sense to have nginx cache pages for a short amount of time (5 minutes or so) so they don't have to be regenerated every time. This would also allow nginx to serve the last cached version of a page if beehive-flask goes down briefly and is restarting.
|
reli
|
configure nginx to use caching for better page performance it seems to make sense to have nginx cache pages for a short amount of time minutes or so so they don t have to be regenerated every time this would also allow nginx to serve the last cached version of a page if beehive flask goes down briefly and is restarting
| 1
|
233,694
| 19,029,230,865
|
IssuesEvent
|
2021-11-24 08:54:11
|
microsoft/AzureStorageExplorer
|
https://api.github.com/repos/microsoft/AzureStorageExplorer
|
closed
|
It is better to provide the link for Emulator download when Emulator is not installed
|
:bulb: feature request 🧪 testing :computer: windows :gear: emulator
|
**Storage Explorer Version:** 1.13.0
**Build:** [20200415.4](https://devdiv.visualstudio.com/DevDiv/_build/results?buildId=3643137)
**Branch:** rel/1.13.0
**Platform/OS:** Windows 10
**Architecture:** ia32
**Regression From:** Not a regression
**Steps to reproduce:**
1. Launch Storage Explorer (Emulator is not installed or started).
2. Expand Local & Attached -> Storage Accounts -> (Emulator - Default Ports) (Key).
3. Expand one service -> Check the result.
**Expect Experience:**
Provide a link for Emulator download.
**Actual Experience:**
No link provided for Emulator download.
|
1.0
|
It is better to provide the link for Emulator download when Emulator is not installed - **Storage Explorer Version:** 1.13.0
**Build:** [20200415.4](https://devdiv.visualstudio.com/DevDiv/_build/results?buildId=3643137)
**Branch:** rel/1.13.0
**Platform/OS:** Windows 10
**Architecture:** ia32
**Regression From:** Not a regression
**Steps to reproduce:**
1. Launch Storage Explorer (Emulator is not installed or started).
2. Expand Local & Attached -> Storage Accounts -> (Emulator - Default Ports) (Key).
3. Expand one service -> Check the result.
**Expect Experience:**
Provide a link for Emulator download.
**Actual Experience:**
No link provided for Emulator download.
|
non_reli
|
it is better to provide the link for emulator download when emulator is not installed storage explorer version build branch rel platform os windows architecture regression from not a regression steps to reproduce launch storage explorer emulator is not installed or started expand local attached storage accounts emulator default ports key expand one service check the result expect experience provide a link for emulator download actual experience no link provided for emulator download
| 0
|
678
| 9,743,959,660
|
IssuesEvent
|
2019-06-03 04:48:31
|
second-state/smart-contract-search-engine
|
https://api.github.com/repos/second-state/smart-contract-search-engine
|
closed
|
Allow for indexing all contracts (not just ones which are in the config.ini)
|
enhancement reliability and performance
|
Instead of indexing known contracts (using the config.ini ABIs for directions) we will harvest every contract on the network.
|
True
|
Allow for indexing all contracts (not just ones which are in the config.ini) - Instead of indexing known contracts (using the config.ini ABIs for directions) we will harvest every contract on the network.
|
reli
|
allow for indexing all contracts not just ones which are in the config ini instead of indexing known contracts using the config ini abis for directions we will harvest every contract on the network
| 1
|
323,076
| 23,932,864,873
|
IssuesEvent
|
2022-09-10 20:17:59
|
neulab/explainaboard_web
|
https://api.github.com/repos/neulab/explainaboard_web
|
closed
|
realpath and wget commands not found
|
documentation
|
I am following the instructions on README for installation.
On Step 2 `npm run gen-api-code`, after installing node 14+ and npm,
the following error occurs:
```
> explainaboard_web@0.2.0 gen-api-code
> bash openapi/gen_api_layer.sh project
openapi/gen_api_layer.sh: line 6: realpath: command not found
openapi/gen_api_layer.sh: line 16: wget: command not found
Error: Unable to access jarfile openapi/swagger-codegen-cli-3.0.29.jar
rm: Dockerfile: No such file or directory
rm: .gitignore: No such file or directory
rm: .travis.yml: No such file or directory
rm: git_push.sh: No such file or directory
rm: tox.ini: No such file or directory
rm: test-requirements.txt: No such file or directory
rm: .dockerignore: No such file or directory
rm: setup.py: No such file or directory
Error: Unable to access jarfile openapi/swagger-codegen-cli-3.0.29.jar
openapi/gen_api_layer.sh: line 51: cd: frontend/src/clients/openapi: No such file or directory
```
|
1.0
|
realpath and wget commands not found - I am following the instructions on README for installation.
On Step 2 `npm run gen-api-code`, after installing node 14+ and npm,
the following error occurs:
```
> explainaboard_web@0.2.0 gen-api-code
> bash openapi/gen_api_layer.sh project
openapi/gen_api_layer.sh: line 6: realpath: command not found
openapi/gen_api_layer.sh: line 16: wget: command not found
Error: Unable to access jarfile openapi/swagger-codegen-cli-3.0.29.jar
rm: Dockerfile: No such file or directory
rm: .gitignore: No such file or directory
rm: .travis.yml: No such file or directory
rm: git_push.sh: No such file or directory
rm: tox.ini: No such file or directory
rm: test-requirements.txt: No such file or directory
rm: .dockerignore: No such file or directory
rm: setup.py: No such file or directory
Error: Unable to access jarfile openapi/swagger-codegen-cli-3.0.29.jar
openapi/gen_api_layer.sh: line 51: cd: frontend/src/clients/openapi: No such file or directory
```
|
non_reli
|
realpath and wget commands not found i am following the instructions on readme for installation on step npm run gen api code after installing node and npm the following error occurs explainaboard web gen api code bash openapi gen api layer sh project openapi gen api layer sh line realpath command not found openapi gen api layer sh line wget command not found error unable to access jarfile openapi swagger codegen cli jar rm dockerfile no such file or directory rm gitignore no such file or directory rm travis yml no such file or directory rm git push sh no such file or directory rm tox ini no such file or directory rm test requirements txt no such file or directory rm dockerignore no such file or directory rm setup py no such file or directory error unable to access jarfile openapi swagger codegen cli jar openapi gen api layer sh line cd frontend src clients openapi no such file or directory
| 0
|
953
| 11,774,647,488
|
IssuesEvent
|
2020-03-16 09:51:20
|
zeebe-io/zeebe-chaos
|
https://api.github.com/repos/zeebe-io/zeebe-chaos
|
opened
|
Hypothesis: A message will be correlated on new Leader
|
Contribution: Reliability Hypothesis Impact: Low Likelihood: High
|
### Hypothesis
We believe that sending a Message with high TTL, will be correlated after Leader change to a new create workflow instance ( with intermediate message catch event)
|
True
|
Hypothesis: A message will be correlated on new Leader - ### Hypothesis
We believe that sending a Message with high TTL, will be correlated after Leader change to a new create workflow instance ( with intermediate message catch event)
|
reli
|
hypothesis a message will be correlated on new leader hypothesis we believe that sending a message with high ttl will be correlated after leader change to a new create workflow instance with intermediate message catch event
| 1
|
1,709
| 18,944,249,156
|
IssuesEvent
|
2021-11-18 08:24:54
|
pulumi/pulumi-awsx
|
https://api.github.com/repos/pulumi/pulumi-awsx
|
opened
|
Master build is failing
|
impact/reliability kind/bug p1
|
We have three consecutive build failures:
> * creating urn:pulumi:p-it-fv-az198-2-capacity-p-76e75aeb::capacity-provider-service-ec2-custom-strategy::awsx:x:autoscaling:AutoScalingGroup$aws:cloudformation/stack:Stack::asg: 1 error occurred:
* error waiting for CloudFormation Stack creation: failed to create CloudFormation stack, rollback requested (ROLLBACK_COMPLETE): ["The following resource(s) failed to create: [Instances]. Rollback requested by user." "Received 0 SUCCESS signal(s) out of 1. Unable to satisfy 100% MinSuccessfulInstancesPercent requirement"]
https://github.com/pulumi/pulumi-awsx/runs/4248104456?check_suite_focus=true
|
True
|
Master build is failing - We have three consecutive build failures:
> * creating urn:pulumi:p-it-fv-az198-2-capacity-p-76e75aeb::capacity-provider-service-ec2-custom-strategy::awsx:x:autoscaling:AutoScalingGroup$aws:cloudformation/stack:Stack::asg: 1 error occurred:
* error waiting for CloudFormation Stack creation: failed to create CloudFormation stack, rollback requested (ROLLBACK_COMPLETE): ["The following resource(s) failed to create: [Instances]. Rollback requested by user." "Received 0 SUCCESS signal(s) out of 1. Unable to satisfy 100% MinSuccessfulInstancesPercent requirement"]
https://github.com/pulumi/pulumi-awsx/runs/4248104456?check_suite_focus=true
|
reli
|
master build is failing we have three consecutive build failures creating urn pulumi p it fv capacity p capacity provider service custom strategy awsx x autoscaling autoscalinggroup aws cloudformation stack stack asg error occurred error waiting for cloudformation stack creation failed to create cloudformation stack rollback requested rollback complete rollback requested by user received success signal s out of unable to satisfy minsuccessfulinstancespercent requirement
| 1
|
239,917
| 26,239,405,160
|
IssuesEvent
|
2023-01-05 10:13:19
|
lukebrogan-mend/vulnerable-rust
|
https://api.github.com/repos/lukebrogan-mend/vulnerable-rust
|
closed
|
CVE-2020-35905 (Medium) detected in futures-util-0.3.5.crate - autoclosed
|
security vulnerability
|
## CVE-2020-35905 - Medium Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>futures-util-0.3.5.crate</b></p></summary>
<p>Common utilities and extension traits for the futures-rs library.
</p>
<p>Library home page: <a href="https://crates.io/api/v1/crates/futures-util/0.3.5/download">https://crates.io/api/v1/crates/futures-util/0.3.5/download</a></p>
<p>
Dependency Hierarchy:
- hyper-0.13.5.crate (Root Library)
- h2-0.2.5.crate
- :x: **futures-util-0.3.5.crate** (Vulnerable Library)
<p>Found in HEAD commit: <a href="https://github.com/lukebroganws/vulnerable-rust/commit/95d576b672062f2c8cd301fe4dd3e17fc29edc64">95d576b672062f2c8cd301fe4dd3e17fc29edc64</a></p>
<p>Found in base branch: <b>master</b></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary>
<p>
An issue was discovered in the futures-util crate before 0.3.7 for Rust. MutexGuard::map can cause a data race for certain closure situations (in safe code).
<p>Publish Date: 2020-12-31
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2020-35905>CVE-2020-35905</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.7</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: 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://rustsec.org/advisories/RUSTSEC-2020-0059.html ">https://rustsec.org/advisories/RUSTSEC-2020-0059.html </a></p>
<p>Release Date: 2020-12-31</p>
<p>Fix Resolution: futures-util - 0.3.7</p>
</p>
</details>
<p></p>
|
True
|
CVE-2020-35905 (Medium) detected in futures-util-0.3.5.crate - autoclosed - ## CVE-2020-35905 - Medium Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>futures-util-0.3.5.crate</b></p></summary>
<p>Common utilities and extension traits for the futures-rs library.
</p>
<p>Library home page: <a href="https://crates.io/api/v1/crates/futures-util/0.3.5/download">https://crates.io/api/v1/crates/futures-util/0.3.5/download</a></p>
<p>
Dependency Hierarchy:
- hyper-0.13.5.crate (Root Library)
- h2-0.2.5.crate
- :x: **futures-util-0.3.5.crate** (Vulnerable Library)
<p>Found in HEAD commit: <a href="https://github.com/lukebroganws/vulnerable-rust/commit/95d576b672062f2c8cd301fe4dd3e17fc29edc64">95d576b672062f2c8cd301fe4dd3e17fc29edc64</a></p>
<p>Found in base branch: <b>master</b></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary>
<p>
An issue was discovered in the futures-util crate before 0.3.7 for Rust. MutexGuard::map can cause a data race for certain closure situations (in safe code).
<p>Publish Date: 2020-12-31
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2020-35905>CVE-2020-35905</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.7</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: 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://rustsec.org/advisories/RUSTSEC-2020-0059.html ">https://rustsec.org/advisories/RUSTSEC-2020-0059.html </a></p>
<p>Release Date: 2020-12-31</p>
<p>Fix Resolution: futures-util - 0.3.7</p>
</p>
</details>
<p></p>
|
non_reli
|
cve medium detected in futures util crate autoclosed cve medium severity vulnerability vulnerable library futures util crate common utilities and extension traits for the futures rs library library home page a href dependency hierarchy hyper crate root library crate x futures util crate vulnerable library found in head commit a href found in base branch master vulnerability details an issue was discovered in the futures util crate before for rust mutexguard map can cause a data race for certain closure situations in safe code 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 none integrity impact none availability impact high for more information on scores click a href suggested fix type upgrade version origin release date fix resolution futures util
| 0
|
9,643
| 6,412,181,298
|
IssuesEvent
|
2017-08-08 02:04:07
|
FReBOmusic/FReBO
|
https://api.github.com/repos/FReBOmusic/FReBO
|
opened
|
Favorite Icon
|
Usability
|
In the event that a Listing Widget is displayed on the screen.
**Expected Response**: The Favorite Icon should be displayed on the List Widget.
|
True
|
Favorite Icon - In the event that a Listing Widget is displayed on the screen.
**Expected Response**: The Favorite Icon should be displayed on the List Widget.
|
non_reli
|
favorite icon in the event that a listing widget is displayed on the screen expected response the favorite icon should be displayed on the list widget
| 0
|
899
| 11,579,357,032
|
IssuesEvent
|
2020-02-21 17:44:42
|
microsoft/azuredatastudio
|
https://api.github.com/repos/microsoft/azuredatastudio
|
closed
|
Opening 500 mb tsql files causes Invalid string length. error
|
Area - Reliability Bug
|
<!-- Please search existing issues to avoid creating duplicates. -->
<!-- Also please test using the latest insiders build to make sure your issue has not already been fixed. -->
<!-- Use Help > Report Issue to prefill these. -->
- SQL Operations Studio Version:
Steps to Reproduce:
1. Open a TSQL file which is 578 Mb in length.
This at first gives the following message:
_AdventureWorks100.Sql: tokenization, wrapping and folding have been turned off for this large file in order to reduce memory usage and avoid freezing or crashing._
After the above message the file
(which also turns off all intellisense and color coding) and give an option to the user to forcibly enable the feature (which sets "editor.largeFileOptimizations": false ). If users continues with intellisense, tokenization, wrapping and folding off then the file opens correctly (without any highlighting).
Now if I proceed to run the TSQL, I get the following errors:
` INFO no standard startup: not the explorer viewlet
2D:\src\2\sqlopsstudio\node_modules\zone.js\dist\zone-node.js:2280 Line (FROM 0x4D5A9000...): longer than 20k characters, tokenization skipped.
D:\src\2\sqlopsstudio\node_modules\zone.js\dist\zone-node.js:2280 [Extension Host] debugger listening on port 5870
D:\src\2\sqlopsstudio\node_modules\zone.js\dist\zone-node.js:2280 [Extension Host] debugger inspector at chrome-devtools://devtools/bundled/inspector.html?experiments=true&v8only=true&ws=127.0.0.1:5870/e1efd657-ee28-4815-a3b6-182e0cc1cb25
D:\src\2\sqlopsstudio\node_modules\zone.js\dist\zone-node.js:2280
**_[Extension Host] (node:3868) [DEP0022] DeprecationWarning: os.tmpDir() is deprecated._** Use os.tmpdir() instead. (at writeOut (internal/process/warning.js:18:20))
console.(anonymous function) @ D:\src\2\sqlopsstudio\node_modules\zone.js\dist\zone-node.js:2280
3D:\src\2\sqlopsstudio\node_modules\zone.js\dist\zone-node.js:388 Angular is running in the development mode. Call enableProdMode() to enable the production mode.
2D:\src\2\sqlopsstudio\node_modules\zone.js\dist\zone-node.js:2280 Line (FROM 0x4D5A9000...): longer than 20k characters, tokenization skipped.
2D:\src\2\sqlopsstudio\node_modules\zone.js\dist\zone-node.js:2280
_**ERR Invalid string length: RangeError: Invalid string length**_
at PieceTreeBase.getValueInRange2 (file:///D:/src/2/sqlopsstudio/out/vs/editor/common/model/pieceTreeTextBuffer/pieceTreeBase.js:401:37)
at PieceTreeBase.getValueInRange (file:///D:/src/2/sqlopsstudio/out/vs/editor/common/model/pieceTreeTextBuffer/pieceTreeBase.js:367:30)
at PieceTreeTextBuffer.getValueInRange (file:///D:/src/2/sqlopsstudio/out/vs/editor/common/model/pieceTreeTextBuffer/pieceTreeTextBuffer.js:61:36)
at Function.ModelServiceImpl._computeEdits (file:///D:/src/2/sqlopsstudio/out/vs/editor/common/services/modelServiceImpl.js:379:84)
at ModelServiceImpl.updateModel (file:///D:/src/2/sqlopsstudio/out/vs/editor/common/services/modelServiceImpl.js:335:59)
at TextFileEditorModel.BaseTextEditorModel.updateTextEditorModel (file:///D:/src/2/sqlopsstudio/out/vs/workbench/common/editor/textEditorModel.js:116:31)
at TextFileEditorModel.doUpdateTextModel (file:///D:/src/2/sqlopsstudio/out/vs/workbench/services/textfile/common/textFileEditorModel.js:337:22)
at TextFileEditorModel.doLoadWithContent (file:///D:/src/2/sqlopsstudio/out/vs/workbench/services/textfile/common/textFileEditorModel.js:320:29)
at TextFileEditorModel.loadWithContent (file:///D:/src/2/sqlopsstudio/out/vs/workbench/services/textfile/common/textFileEditorModel.js:271:25)
at textFileService.resolveTextContent.then.result (file:///D:/src/2/sqlopsstudio/out/vs/workbench/services/textfile/common/textFileEditorModel.js:244:34)
at Object.notifySuccess [as _notify] (file:///D:/src/2/sqlopsstudio/out/vs/base/common/winjs.base.js:1191:59)
at Object.enter (file:///D:/src/2/sqlopsstudio/out/vs/base/common/winjs.base.js:867:30)
at Promise_ctor._run (file:///D:/src/2/sqlopsstudio/out/vs/base/common/winjs.base.js:1089:29)
at Promise_ctor._completed (file:///D:/src/2/sqlopsstudio/out/vs/base/common/winjs.base.js:1057:18)
at IconvLiteDecoderStream.<anonymous> (file:///D:/src/2/sqlopsstudio/out/vs/editor/common/model/textModel.js:46:21)
at ZoneDelegate.invokeTask (D:\src\2\sqlopsstudio\node_modules\zone.js\dist\zone-node.js:421:31)
at Zone.runTask (D:\src\2\sqlopsstudio\node_modules\zone.js\dist\zone-node.js:188:47)
at ZoneTask.invokeTask (D:\src\2\sqlopsstudio\node_modules\zone.js\dist\zone-node.js:496:34)
at IconvLiteDecoderStream.ZoneTask.invoke (D:\src\2\sqlopsstudio\node_modules\zone.js\dist\zone-node.js:485:48)
at emitNone (events.js:111:20)
at IconvLiteDecoderStream.emit (events.js:208:7)
at endReadableNT (_stream_readable.js:1056:12)
at ZoneDelegate.invokeTask (D:\src\2\sqlopsstudio\node_modules\zone.js\dist\zone-node.js:421:31)
at Zone.runTask (D:\src\2\sqlopsstudio\node_modules\zone.js\dist\zone-node.js:188:47)
at ZoneTask.invokeTask (D:\src\2\sqlopsstudio\node_modules\zone.js\dist\zone-node.js:496:34)
at ZoneTask.invoke (D:\src\2\sqlopsstudio\node_modules\zone.js\dist\zone-node.js:485:48)
at data.args.(anonymous function) (D:\src\2\sqlopsstudio\node_modules\zone.js\dist\zone-node.js:1338:25)
at _combinedTickCallback (internal/process/next_tick.js:138:11)
at process._tickCallback (internal/process/next_tick.js:180:9)
D:\src\2\sqlopsstudio\node_modules\zone.js\dist\zone-node.js:2280
**_ERR Cannot read property 'value' of null: TypeError: Cannot read property 'value' of null_**
at HistoryInputBox.get [as value] (file:///D:/src/2/sqlopsstudio/out/vs/base/browser/ui/inputbox/inputBox.js:154:35)
at HistoryInputBox.addToHistory (file:///D:/src/2/sqlopsstudio/out/vs/base/browser/ui/inputbox/inputBox.js:405:22)
at FindWidget._updateHistory (file:///D:/src/2/sqlopsstudio/out/vs/editor/contrib/find/findWidget.js:222:42)
at file:///D:/src/2/sqlopsstudio/out/vs/base/common/async.js:272:28
at Object.notifySuccess [as _notify] (file:///D:/src/2/sqlopsstudio/out/vs/base/common/winjs.base.js:1191:59)
at Object.enter (file:///D:/src/2/sqlopsstudio/out/vs/base/common/winjs.base.js:867:30)
at Promise_ctor._run (file:///D:/src/2/sqlopsstudio/out/vs/base/common/winjs.base.js:1089:29)
at Promise_ctor._completed (file:///D:/src/2/sqlopsstudio/out/vs/base/common/winjs.base.js:1057:18)
at file:///D:/src/2/sqlopsstudio/out/vs/base/common/async.js:277:23
D:\src\2\sqlopsstudio\node_modules\zone.js\dist\zone-node.js:2280 WARNING: Promise with no error callback:82
D:\src\2\sqlopsstudio\node_modules\zone.js\dist\zone-node.js:2280 Object
D:\src\2\sqlopsstudio\node_modules\zone.js\dist\zone-node.js:2280 TypeError: Cannot read property 'value' of null
at HistoryInputBox.get [as value] (inputBox.ts:251)
at HistoryInputBox.addToHistory (inputBox.ts:549)
at FindWidget._updateHistory (findWidget.ts:315)
at async.ts:289
at Object.notifySuccess [as _notify] (winjs.base.js:1191)
at Object.enter (winjs.base.js:867)
at Promise_ctor._run (winjs.base.js:1089)
at Promise_ctor._completed (winjs.base.js:1057)
at async.ts:295`
If the user turns editor.largeFileOptimizations to false and reopens the file they get this error:
`Unable to open 'AdventureWorks100.Sql': Invalid string length.`
and predictably the file fails to be opened.
|
True
|
Opening 500 mb tsql files causes Invalid string length. error - <!-- Please search existing issues to avoid creating duplicates. -->
<!-- Also please test using the latest insiders build to make sure your issue has not already been fixed. -->
<!-- Use Help > Report Issue to prefill these. -->
- SQL Operations Studio Version:
Steps to Reproduce:
1. Open a TSQL file which is 578 Mb in length.
This at first gives the following message:
_AdventureWorks100.Sql: tokenization, wrapping and folding have been turned off for this large file in order to reduce memory usage and avoid freezing or crashing._
After the above message the file
(which also turns off all intellisense and color coding) and give an option to the user to forcibly enable the feature (which sets "editor.largeFileOptimizations": false ). If users continues with intellisense, tokenization, wrapping and folding off then the file opens correctly (without any highlighting).
Now if I proceed to run the TSQL, I get the following errors:
` INFO no standard startup: not the explorer viewlet
2D:\src\2\sqlopsstudio\node_modules\zone.js\dist\zone-node.js:2280 Line (FROM 0x4D5A9000...): longer than 20k characters, tokenization skipped.
D:\src\2\sqlopsstudio\node_modules\zone.js\dist\zone-node.js:2280 [Extension Host] debugger listening on port 5870
D:\src\2\sqlopsstudio\node_modules\zone.js\dist\zone-node.js:2280 [Extension Host] debugger inspector at chrome-devtools://devtools/bundled/inspector.html?experiments=true&v8only=true&ws=127.0.0.1:5870/e1efd657-ee28-4815-a3b6-182e0cc1cb25
D:\src\2\sqlopsstudio\node_modules\zone.js\dist\zone-node.js:2280
**_[Extension Host] (node:3868) [DEP0022] DeprecationWarning: os.tmpDir() is deprecated._** Use os.tmpdir() instead. (at writeOut (internal/process/warning.js:18:20))
console.(anonymous function) @ D:\src\2\sqlopsstudio\node_modules\zone.js\dist\zone-node.js:2280
3D:\src\2\sqlopsstudio\node_modules\zone.js\dist\zone-node.js:388 Angular is running in the development mode. Call enableProdMode() to enable the production mode.
2D:\src\2\sqlopsstudio\node_modules\zone.js\dist\zone-node.js:2280 Line (FROM 0x4D5A9000...): longer than 20k characters, tokenization skipped.
2D:\src\2\sqlopsstudio\node_modules\zone.js\dist\zone-node.js:2280
_**ERR Invalid string length: RangeError: Invalid string length**_
at PieceTreeBase.getValueInRange2 (file:///D:/src/2/sqlopsstudio/out/vs/editor/common/model/pieceTreeTextBuffer/pieceTreeBase.js:401:37)
at PieceTreeBase.getValueInRange (file:///D:/src/2/sqlopsstudio/out/vs/editor/common/model/pieceTreeTextBuffer/pieceTreeBase.js:367:30)
at PieceTreeTextBuffer.getValueInRange (file:///D:/src/2/sqlopsstudio/out/vs/editor/common/model/pieceTreeTextBuffer/pieceTreeTextBuffer.js:61:36)
at Function.ModelServiceImpl._computeEdits (file:///D:/src/2/sqlopsstudio/out/vs/editor/common/services/modelServiceImpl.js:379:84)
at ModelServiceImpl.updateModel (file:///D:/src/2/sqlopsstudio/out/vs/editor/common/services/modelServiceImpl.js:335:59)
at TextFileEditorModel.BaseTextEditorModel.updateTextEditorModel (file:///D:/src/2/sqlopsstudio/out/vs/workbench/common/editor/textEditorModel.js:116:31)
at TextFileEditorModel.doUpdateTextModel (file:///D:/src/2/sqlopsstudio/out/vs/workbench/services/textfile/common/textFileEditorModel.js:337:22)
at TextFileEditorModel.doLoadWithContent (file:///D:/src/2/sqlopsstudio/out/vs/workbench/services/textfile/common/textFileEditorModel.js:320:29)
at TextFileEditorModel.loadWithContent (file:///D:/src/2/sqlopsstudio/out/vs/workbench/services/textfile/common/textFileEditorModel.js:271:25)
at textFileService.resolveTextContent.then.result (file:///D:/src/2/sqlopsstudio/out/vs/workbench/services/textfile/common/textFileEditorModel.js:244:34)
at Object.notifySuccess [as _notify] (file:///D:/src/2/sqlopsstudio/out/vs/base/common/winjs.base.js:1191:59)
at Object.enter (file:///D:/src/2/sqlopsstudio/out/vs/base/common/winjs.base.js:867:30)
at Promise_ctor._run (file:///D:/src/2/sqlopsstudio/out/vs/base/common/winjs.base.js:1089:29)
at Promise_ctor._completed (file:///D:/src/2/sqlopsstudio/out/vs/base/common/winjs.base.js:1057:18)
at IconvLiteDecoderStream.<anonymous> (file:///D:/src/2/sqlopsstudio/out/vs/editor/common/model/textModel.js:46:21)
at ZoneDelegate.invokeTask (D:\src\2\sqlopsstudio\node_modules\zone.js\dist\zone-node.js:421:31)
at Zone.runTask (D:\src\2\sqlopsstudio\node_modules\zone.js\dist\zone-node.js:188:47)
at ZoneTask.invokeTask (D:\src\2\sqlopsstudio\node_modules\zone.js\dist\zone-node.js:496:34)
at IconvLiteDecoderStream.ZoneTask.invoke (D:\src\2\sqlopsstudio\node_modules\zone.js\dist\zone-node.js:485:48)
at emitNone (events.js:111:20)
at IconvLiteDecoderStream.emit (events.js:208:7)
at endReadableNT (_stream_readable.js:1056:12)
at ZoneDelegate.invokeTask (D:\src\2\sqlopsstudio\node_modules\zone.js\dist\zone-node.js:421:31)
at Zone.runTask (D:\src\2\sqlopsstudio\node_modules\zone.js\dist\zone-node.js:188:47)
at ZoneTask.invokeTask (D:\src\2\sqlopsstudio\node_modules\zone.js\dist\zone-node.js:496:34)
at ZoneTask.invoke (D:\src\2\sqlopsstudio\node_modules\zone.js\dist\zone-node.js:485:48)
at data.args.(anonymous function) (D:\src\2\sqlopsstudio\node_modules\zone.js\dist\zone-node.js:1338:25)
at _combinedTickCallback (internal/process/next_tick.js:138:11)
at process._tickCallback (internal/process/next_tick.js:180:9)
D:\src\2\sqlopsstudio\node_modules\zone.js\dist\zone-node.js:2280
**_ERR Cannot read property 'value' of null: TypeError: Cannot read property 'value' of null_**
at HistoryInputBox.get [as value] (file:///D:/src/2/sqlopsstudio/out/vs/base/browser/ui/inputbox/inputBox.js:154:35)
at HistoryInputBox.addToHistory (file:///D:/src/2/sqlopsstudio/out/vs/base/browser/ui/inputbox/inputBox.js:405:22)
at FindWidget._updateHistory (file:///D:/src/2/sqlopsstudio/out/vs/editor/contrib/find/findWidget.js:222:42)
at file:///D:/src/2/sqlopsstudio/out/vs/base/common/async.js:272:28
at Object.notifySuccess [as _notify] (file:///D:/src/2/sqlopsstudio/out/vs/base/common/winjs.base.js:1191:59)
at Object.enter (file:///D:/src/2/sqlopsstudio/out/vs/base/common/winjs.base.js:867:30)
at Promise_ctor._run (file:///D:/src/2/sqlopsstudio/out/vs/base/common/winjs.base.js:1089:29)
at Promise_ctor._completed (file:///D:/src/2/sqlopsstudio/out/vs/base/common/winjs.base.js:1057:18)
at file:///D:/src/2/sqlopsstudio/out/vs/base/common/async.js:277:23
D:\src\2\sqlopsstudio\node_modules\zone.js\dist\zone-node.js:2280 WARNING: Promise with no error callback:82
D:\src\2\sqlopsstudio\node_modules\zone.js\dist\zone-node.js:2280 Object
D:\src\2\sqlopsstudio\node_modules\zone.js\dist\zone-node.js:2280 TypeError: Cannot read property 'value' of null
at HistoryInputBox.get [as value] (inputBox.ts:251)
at HistoryInputBox.addToHistory (inputBox.ts:549)
at FindWidget._updateHistory (findWidget.ts:315)
at async.ts:289
at Object.notifySuccess [as _notify] (winjs.base.js:1191)
at Object.enter (winjs.base.js:867)
at Promise_ctor._run (winjs.base.js:1089)
at Promise_ctor._completed (winjs.base.js:1057)
at async.ts:295`
If the user turns editor.largeFileOptimizations to false and reopens the file they get this error:
`Unable to open 'AdventureWorks100.Sql': Invalid string length.`
and predictably the file fails to be opened.
|
reli
|
opening mb tsql files causes invalid string length error report issue to prefill these sql operations studio version steps to reproduce open a tsql file which is mb in length this at first gives the following message sql tokenization wrapping and folding have been turned off for this large file in order to reduce memory usage and avoid freezing or crashing after the above message the file which also turns off all intellisense and color coding and give an option to the user to forcibly enable the feature which sets editor largefileoptimizations false if users continues with intellisense tokenization wrapping and folding off then the file opens correctly without any highlighting now if i proceed to run the tsql i get the following errors info no standard startup not the explorer viewlet src sqlopsstudio node modules zone js dist zone node js line from longer than characters tokenization skipped d src sqlopsstudio node modules zone js dist zone node js debugger listening on port d src sqlopsstudio node modules zone js dist zone node js debugger inspector at chrome devtools devtools bundled inspector html experiments true true ws d src sqlopsstudio node modules zone js dist zone node js node deprecationwarning os tmpdir is deprecated use os tmpdir instead at writeout internal process warning js console anonymous function d src sqlopsstudio node modules zone js dist zone node js src sqlopsstudio node modules zone js dist zone node js angular is running in the development mode call enableprodmode to enable the production mode src sqlopsstudio node modules zone js dist zone node js line from longer than characters tokenization skipped src sqlopsstudio node modules zone js dist zone node js err invalid string length rangeerror invalid string length at piecetreebase file d src sqlopsstudio out vs editor common model piecetreetextbuffer piecetreebase js at piecetreebase getvalueinrange file d src sqlopsstudio out vs editor common model piecetreetextbuffer piecetreebase js at piecetreetextbuffer getvalueinrange file d src sqlopsstudio out vs editor common model piecetreetextbuffer piecetreetextbuffer js at function modelserviceimpl computeedits file d src sqlopsstudio out vs editor common services modelserviceimpl js at modelserviceimpl updatemodel file d src sqlopsstudio out vs editor common services modelserviceimpl js at textfileeditormodel basetexteditormodel updatetexteditormodel file d src sqlopsstudio out vs workbench common editor texteditormodel js at textfileeditormodel doupdatetextmodel file d src sqlopsstudio out vs workbench services textfile common textfileeditormodel js at textfileeditormodel doloadwithcontent file d src sqlopsstudio out vs workbench services textfile common textfileeditormodel js at textfileeditormodel loadwithcontent file d src sqlopsstudio out vs workbench services textfile common textfileeditormodel js at textfileservice resolvetextcontent then result file d src sqlopsstudio out vs workbench services textfile common textfileeditormodel js at object notifysuccess file d src sqlopsstudio out vs base common winjs base js at object enter file d src sqlopsstudio out vs base common winjs base js at promise ctor run file d src sqlopsstudio out vs base common winjs base js at promise ctor completed file d src sqlopsstudio out vs base common winjs base js at iconvlitedecoderstream file d src sqlopsstudio out vs editor common model textmodel js at zonedelegate invoketask d src sqlopsstudio node modules zone js dist zone node js at zone runtask d src sqlopsstudio node modules zone js dist zone node js at zonetask invoketask d src sqlopsstudio node modules zone js dist zone node js at iconvlitedecoderstream zonetask invoke d src sqlopsstudio node modules zone js dist zone node js at emitnone events js at iconvlitedecoderstream emit events js at endreadablent stream readable js at zonedelegate invoketask d src sqlopsstudio node modules zone js dist zone node js at zone runtask d src sqlopsstudio node modules zone js dist zone node js at zonetask invoketask d src sqlopsstudio node modules zone js dist zone node js at zonetask invoke d src sqlopsstudio node modules zone js dist zone node js at data args anonymous function d src sqlopsstudio node modules zone js dist zone node js at combinedtickcallback internal process next tick js at process tickcallback internal process next tick js d src sqlopsstudio node modules zone js dist zone node js err cannot read property value of null typeerror cannot read property value of null at historyinputbox get file d src sqlopsstudio out vs base browser ui inputbox inputbox js at historyinputbox addtohistory file d src sqlopsstudio out vs base browser ui inputbox inputbox js at findwidget updatehistory file d src sqlopsstudio out vs editor contrib find findwidget js at file d src sqlopsstudio out vs base common async js at object notifysuccess file d src sqlopsstudio out vs base common winjs base js at object enter file d src sqlopsstudio out vs base common winjs base js at promise ctor run file d src sqlopsstudio out vs base common winjs base js at promise ctor completed file d src sqlopsstudio out vs base common winjs base js at file d src sqlopsstudio out vs base common async js d src sqlopsstudio node modules zone js dist zone node js warning promise with no error callback d src sqlopsstudio node modules zone js dist zone node js object d src sqlopsstudio node modules zone js dist zone node js typeerror cannot read property value of null at historyinputbox get inputbox ts at historyinputbox addtohistory inputbox ts at findwidget updatehistory findwidget ts at async ts at object notifysuccess winjs base js at object enter winjs base js at promise ctor run winjs base js at promise ctor completed winjs base js at async ts if the user turns editor largefileoptimizations to false and reopens the file they get this error unable to open sql invalid string length and predictably the file fails to be opened
| 1
|
1,073
| 12,827,069,580
|
IssuesEvent
|
2020-07-06 17:45:13
|
osbuild/osbuild-composer
|
https://api.github.com/repos/osbuild/osbuild-composer
|
closed
|
RHEL 8.x has issues downloading from EPEL occasionally
|
ci-reliability
|
```
[2020-07-06T14:51:42.719Z] + sudo dnf repository-packages osbuild-mock list
[2020-07-06T14:51:44.673Z] Updating Subscription Management repositories.
[2020-07-06T14:51:44.674Z] /usr/lib/python3.6/site-packages/dateutil/parser/_parser.py:70: UnicodeWarning: decode() called on unicode string, see https://bugzilla.redhat.com/show_bug.cgi?id=1693751
[2020-07-06T14:51:44.674Z] instream = instream.decode()
[2020-07-06T14:51:44.674Z]
[2020-07-06T14:51:45.629Z] osbuild mock osbuild/osbuild-composer/PR-809-8a 81 kB/s | 9.3 kB 00:00
[2020-07-06T14:51:45.630Z] Extra Packages for Enterprise Linux Modular 8 - 237 kB/s | 18 kB 00:00
[2020-07-06T14:51:45.902Z] Extra Packages for Enterprise Linux Modular 8 - 533 kB/s | 154 kB 00:00
[2020-07-06T14:51:46.163Z] Extra Packages for Enterprise Linux 8 - x86_64 70 kB/s | 19 kB 00:00
[2020-07-06T14:52:32.978Z] Extra Packages for Enterprise Linux 8 - x86_64 114 B/s | 4.7 kB 00:42
[2020-07-06T14:52:32.979Z] Errors during downloading metadata for repository 'epel':
[2020-07-06T14:52:32.979Z] - Curl error (28): Timeout was reached for http://mirror.compevo.com/epel/8/Everything/x86_64/repodata/repomd.xml [Operation too slow. Less than 1000 bytes/sec transferred the last 30 seconds]
[2020-07-06T14:52:32.979Z] - Downloading successful, but checksum doesn't match. Calculated: e0142781244cd8bcae4151d20e6d012fdc1a0cdb891a6addb7dce48ab939769b328a4652f58ed8980e16731fcffa0c7ece1f3ceb6e252cba984347af0c5b4adb(sha512) e0142781244cd8bcae4151d20e6d012fdc1a0cdb891a6addb7dce48ab939769b328a4652f58ed8980e16731fcffa0c7ece1f3ceb6e252cba984347af0c5b4adb(sha512) e0142781244cd8bcae4151d20e6d012fdc1a0cdb891a6addb7dce48ab939769b328a4652f58ed8980e16731fcffa0c7ece1f3ceb6e252cba984347af0c5b4adb(sha512) Expected: 10d1ee971104fe861b33c884b00403192f002da75cc916533f663be8a081079e76eef95edbdda29c45c2871cc176251586d1b3e6b24354d3932804ad7a627043(sha512) 33456fb7e50f318f327f2512f2aa7fce451994ae6445ce8111187d39288469303e85cc943a1d7178db81c0ae250dc31d53d20d97eb263bbc244dbe21b9bd0e3e(sha512) cc9f27ff3c3100c094a36e349ef599ba1a0a8d6614e4f399c750f8dbfbf755956698f07636bbb3c00180630873597da64cece73c97edf00a0af5e560b2abb113(sha512)
[2020-07-06T14:52:32.979Z] Error: Failed to download metadata for repo 'epel': Cannot download repomd.xml: Cannot download repodata/repomd.xml: All mirrors were tried
```
|
True
|
RHEL 8.x has issues downloading from EPEL occasionally - ```
[2020-07-06T14:51:42.719Z] + sudo dnf repository-packages osbuild-mock list
[2020-07-06T14:51:44.673Z] Updating Subscription Management repositories.
[2020-07-06T14:51:44.674Z] /usr/lib/python3.6/site-packages/dateutil/parser/_parser.py:70: UnicodeWarning: decode() called on unicode string, see https://bugzilla.redhat.com/show_bug.cgi?id=1693751
[2020-07-06T14:51:44.674Z] instream = instream.decode()
[2020-07-06T14:51:44.674Z]
[2020-07-06T14:51:45.629Z] osbuild mock osbuild/osbuild-composer/PR-809-8a 81 kB/s | 9.3 kB 00:00
[2020-07-06T14:51:45.630Z] Extra Packages for Enterprise Linux Modular 8 - 237 kB/s | 18 kB 00:00
[2020-07-06T14:51:45.902Z] Extra Packages for Enterprise Linux Modular 8 - 533 kB/s | 154 kB 00:00
[2020-07-06T14:51:46.163Z] Extra Packages for Enterprise Linux 8 - x86_64 70 kB/s | 19 kB 00:00
[2020-07-06T14:52:32.978Z] Extra Packages for Enterprise Linux 8 - x86_64 114 B/s | 4.7 kB 00:42
[2020-07-06T14:52:32.979Z] Errors during downloading metadata for repository 'epel':
[2020-07-06T14:52:32.979Z] - Curl error (28): Timeout was reached for http://mirror.compevo.com/epel/8/Everything/x86_64/repodata/repomd.xml [Operation too slow. Less than 1000 bytes/sec transferred the last 30 seconds]
[2020-07-06T14:52:32.979Z] - Downloading successful, but checksum doesn't match. Calculated: e0142781244cd8bcae4151d20e6d012fdc1a0cdb891a6addb7dce48ab939769b328a4652f58ed8980e16731fcffa0c7ece1f3ceb6e252cba984347af0c5b4adb(sha512) e0142781244cd8bcae4151d20e6d012fdc1a0cdb891a6addb7dce48ab939769b328a4652f58ed8980e16731fcffa0c7ece1f3ceb6e252cba984347af0c5b4adb(sha512) e0142781244cd8bcae4151d20e6d012fdc1a0cdb891a6addb7dce48ab939769b328a4652f58ed8980e16731fcffa0c7ece1f3ceb6e252cba984347af0c5b4adb(sha512) Expected: 10d1ee971104fe861b33c884b00403192f002da75cc916533f663be8a081079e76eef95edbdda29c45c2871cc176251586d1b3e6b24354d3932804ad7a627043(sha512) 33456fb7e50f318f327f2512f2aa7fce451994ae6445ce8111187d39288469303e85cc943a1d7178db81c0ae250dc31d53d20d97eb263bbc244dbe21b9bd0e3e(sha512) cc9f27ff3c3100c094a36e349ef599ba1a0a8d6614e4f399c750f8dbfbf755956698f07636bbb3c00180630873597da64cece73c97edf00a0af5e560b2abb113(sha512)
[2020-07-06T14:52:32.979Z] Error: Failed to download metadata for repo 'epel': Cannot download repomd.xml: Cannot download repodata/repomd.xml: All mirrors were tried
```
|
reli
|
rhel x has issues downloading from epel occasionally sudo dnf repository packages osbuild mock list updating subscription management repositories usr lib site packages dateutil parser parser py unicodewarning decode called on unicode string see instream instream decode osbuild mock osbuild osbuild composer pr kb s kb extra packages for enterprise linux modular kb s kb extra packages for enterprise linux modular kb s kb extra packages for enterprise linux kb s kb extra packages for enterprise linux b s kb errors during downloading metadata for repository epel curl error timeout was reached for downloading successful but checksum doesn t match calculated expected error failed to download metadata for repo epel cannot download repomd xml cannot download repodata repomd xml all mirrors were tried
| 1
|
24,219
| 6,523,712,415
|
IssuesEvent
|
2017-08-29 09:43:43
|
joomla/joomla-cms
|
https://api.github.com/repos/joomla/joomla-cms
|
closed
|
Joomla com_media Upload Vulnerability
|
No Code Attached Yet
|
### Steps to reproduce the issue
visit [http(s)://site/index.php?option=com_media&view=images&asset=com_content&tmpl=component]() to upload files onto target victim host's Joomla "images" folder
### Expected result
Permission denied, I suppose?
### Actual result
Success
### System information (as much as possible)
NA
### Additional comments
tutorial documented @ https://cxsecurity.com/issue/WLB-2017020171
|
1.0
|
Joomla com_media Upload Vulnerability - ### Steps to reproduce the issue
visit [http(s)://site/index.php?option=com_media&view=images&asset=com_content&tmpl=component]() to upload files onto target victim host's Joomla "images" folder
### Expected result
Permission denied, I suppose?
### Actual result
Success
### System information (as much as possible)
NA
### Additional comments
tutorial documented @ https://cxsecurity.com/issue/WLB-2017020171
|
non_reli
|
joomla com media upload vulnerability steps to reproduce the issue visit to upload files onto target victim host s joomla images folder expected result permission denied i suppose actual result success system information as much as possible na additional comments tutorial documented
| 0
|
99,972
| 21,094,334,602
|
IssuesEvent
|
2022-04-04 08:53:45
|
Regalis11/Barotrauma
|
https://api.github.com/repos/Regalis11/Barotrauma
|
closed
|
Null reference exception (crash) in the bot combat state while following the player
|
Bug Code Crash
|
Steps to repro:
- Tell a bot to follow you
- Ensure that the bot don't have ranged weapons
- Go outside of sub
- Tell the character that you are controlling to hold the position
- Spawn Swarmfeeder near the bot
- Control the Swarmfeeder and attack the bot
- The bot should start fleeing from the monster
- Dismiss the follow order with right click
- The game should crash with a null reference exception at AIObjectiveManager.cs:633.
|
1.0
|
Null reference exception (crash) in the bot combat state while following the player - Steps to repro:
- Tell a bot to follow you
- Ensure that the bot don't have ranged weapons
- Go outside of sub
- Tell the character that you are controlling to hold the position
- Spawn Swarmfeeder near the bot
- Control the Swarmfeeder and attack the bot
- The bot should start fleeing from the monster
- Dismiss the follow order with right click
- The game should crash with a null reference exception at AIObjectiveManager.cs:633.
|
non_reli
|
null reference exception crash in the bot combat state while following the player steps to repro tell a bot to follow you ensure that the bot don t have ranged weapons go outside of sub tell the character that you are controlling to hold the position spawn swarmfeeder near the bot control the swarmfeeder and attack the bot the bot should start fleeing from the monster dismiss the follow order with right click the game should crash with a null reference exception at aiobjectivemanager cs
| 0
|
1,146
| 13,324,358,269
|
IssuesEvent
|
2020-08-27 08:19:03
|
kubernetes/kubernetes
|
https://api.github.com/repos/kubernetes/kubernetes
|
closed
|
API docs for job status should clearly explain what fields indicate success or failure
|
area/reliability good first issue help wanted kind/bug sig/apps
|
The API docs for jobs are unclear as to what fields a caller would use to determine job success or failure in 1.11 (and we haven't updated them in a while)
```
status:
conditions:
- lastProbeTime: 2018-09-15T19:51:27Z
lastTransitionTime: 2018-09-15T19:51:27Z
message: Job has reached the specified backoff limit
reason: BackoffLimitExceeded
status: "True"
type: Failed
failed: 6
startTime: 2018-09-15T19:46:13Z
```
```
$ kubectl explain jobs.status
KIND: Job
VERSION: batch/v1
RESOURCE: status <Object>
DESCRIPTION:
Current status of a job. More info:
https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status
JobStatus represents the current state of a Job.
FIELDS:
active <integer>
The number of actively running pods.
completionTime <string>
Represents time when the job was completed. It is not guaranteed to be set
in happens-before order across separate operations. It is represented in
RFC3339 form and is in UTC.
conditions <[]Object>
The latest available observations of an object's current state. More info:
https://kubernetes.io/docs/concepts/workloads/controllers/jobs-run-to-completion/
failed <integer>
The number of pods which reached phase Failed.
startTime <string>
Represents time when the job was acknowledged by the job controller. It is
not guaranteed to be set in happens-before order across separate
operations. It is represented in RFC3339 form and is in UTC.
succeeded <integer>
The number of pods which reached phase Succeeded.
```
A casual reader would infer that completionTime is set when the job fails (but it isn't). Linking out to the docs is ok, but I shouldn't have to click through the links to understand how to use the Job object. The Job description and the job status fields should *clearly* indicate what fields are set in completion states on the job, because that's 100% of the point of docs. Taking a summary of the jobs-run-to-completion link and putting it in job.status.conditions, job.status, and job would improve the actual utility of our API doc.
We should also do a pass on other objects and make the actual in server docs more useful.
@kubernetes/sig-apps-bugs
|
True
|
API docs for job status should clearly explain what fields indicate success or failure - The API docs for jobs are unclear as to what fields a caller would use to determine job success or failure in 1.11 (and we haven't updated them in a while)
```
status:
conditions:
- lastProbeTime: 2018-09-15T19:51:27Z
lastTransitionTime: 2018-09-15T19:51:27Z
message: Job has reached the specified backoff limit
reason: BackoffLimitExceeded
status: "True"
type: Failed
failed: 6
startTime: 2018-09-15T19:46:13Z
```
```
$ kubectl explain jobs.status
KIND: Job
VERSION: batch/v1
RESOURCE: status <Object>
DESCRIPTION:
Current status of a job. More info:
https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status
JobStatus represents the current state of a Job.
FIELDS:
active <integer>
The number of actively running pods.
completionTime <string>
Represents time when the job was completed. It is not guaranteed to be set
in happens-before order across separate operations. It is represented in
RFC3339 form and is in UTC.
conditions <[]Object>
The latest available observations of an object's current state. More info:
https://kubernetes.io/docs/concepts/workloads/controllers/jobs-run-to-completion/
failed <integer>
The number of pods which reached phase Failed.
startTime <string>
Represents time when the job was acknowledged by the job controller. It is
not guaranteed to be set in happens-before order across separate
operations. It is represented in RFC3339 form and is in UTC.
succeeded <integer>
The number of pods which reached phase Succeeded.
```
A casual reader would infer that completionTime is set when the job fails (but it isn't). Linking out to the docs is ok, but I shouldn't have to click through the links to understand how to use the Job object. The Job description and the job status fields should *clearly* indicate what fields are set in completion states on the job, because that's 100% of the point of docs. Taking a summary of the jobs-run-to-completion link and putting it in job.status.conditions, job.status, and job would improve the actual utility of our API doc.
We should also do a pass on other objects and make the actual in server docs more useful.
@kubernetes/sig-apps-bugs
|
reli
|
api docs for job status should clearly explain what fields indicate success or failure the api docs for jobs are unclear as to what fields a caller would use to determine job success or failure in and we haven t updated them in a while status conditions lastprobetime lasttransitiontime message job has reached the specified backoff limit reason backofflimitexceeded status true type failed failed starttime kubectl explain jobs status kind job version batch resource status description current status of a job more info jobstatus represents the current state of a job fields active the number of actively running pods completiontime represents time when the job was completed it is not guaranteed to be set in happens before order across separate operations it is represented in form and is in utc conditions the latest available observations of an object s current state more info failed the number of pods which reached phase failed starttime represents time when the job was acknowledged by the job controller it is not guaranteed to be set in happens before order across separate operations it is represented in form and is in utc succeeded the number of pods which reached phase succeeded a casual reader would infer that completiontime is set when the job fails but it isn t linking out to the docs is ok but i shouldn t have to click through the links to understand how to use the job object the job description and the job status fields should clearly indicate what fields are set in completion states on the job because that s of the point of docs taking a summary of the jobs run to completion link and putting it in job status conditions job status and job would improve the actual utility of our api doc we should also do a pass on other objects and make the actual in server docs more useful kubernetes sig apps bugs
| 1
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.