Unnamed: 0
int64
0
832k
id
float64
2.49B
32.1B
type
stringclasses
1 value
created_at
stringlengths
19
19
repo
stringlengths
4
112
repo_url
stringlengths
33
141
action
stringclasses
3 values
title
stringlengths
1
1.02k
labels
stringlengths
4
1.54k
body
stringlengths
1
262k
index
stringclasses
17 values
text_combine
stringlengths
95
262k
label
stringclasses
2 values
text
stringlengths
96
252k
binary_label
int64
0
1
232,308
18,857,304,233
IssuesEvent
2021-11-12 08:26:10
tendermint/farming
https://api.github.com/repos/tendermint/farming
closed
test: add test cases of ratio plan for allocation
test and simulation
<!-- < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < ☺ v ✰ Thanks for opening an issue! ✰ v Before smashing the submit button please review the template. v Word of caution: poorly thought-out proposals may be rejected v without deliberation ☺ > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > --> ## Summary Add test cases of ratio plan for allocation ## Proposal <!-- Detailed description of requirements of implementation --> ## Tasks - Add Ratio plan testcases on `TestAllocationInfos`, etc ## References - https://github.com/typark391/farming/commit/5913d559899baf8b66cc93c9fd5740a7abcf0bfb ____ #### For Admin Use - [ ] Not duplicate issue - [ ] Appropriate labels applied - [ ] Appropriate contributors tagged - [ ] Contributor assigned/self-assigned
1.0
test: add test cases of ratio plan for allocation - <!-- < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < ☺ v ✰ Thanks for opening an issue! ✰ v Before smashing the submit button please review the template. v Word of caution: poorly thought-out proposals may be rejected v without deliberation ☺ > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > --> ## Summary Add test cases of ratio plan for allocation ## Proposal <!-- Detailed description of requirements of implementation --> ## Tasks - Add Ratio plan testcases on `TestAllocationInfos`, etc ## References - https://github.com/typark391/farming/commit/5913d559899baf8b66cc93c9fd5740a7abcf0bfb ____ #### For Admin Use - [ ] Not duplicate issue - [ ] Appropriate labels applied - [ ] Appropriate contributors tagged - [ ] Contributor assigned/self-assigned
test
test add test cases of ratio plan for allocation ☺ v ✰ thanks for opening an issue ✰ v before smashing the submit button please review the template v word of caution poorly thought out proposals may be rejected v without deliberation ☺ summary add test cases of ratio plan for allocation proposal tasks add ratio plan testcases on testallocationinfos etc references for admin use not duplicate issue appropriate labels applied appropriate contributors tagged contributor assigned self assigned
1
125,870
10,367,593,277
IssuesEvent
2019-09-07 09:41:05
emscripten-core/emscripten
https://api.github.com/repos/emscripten-core/emscripten
closed
test_openjpeg fails on Windows.
tests windows wontfix
Running test_openjpeg on Windows gives the following error: ``` C:\Projects\emscripten>python tests/runner.py test_openjpeg Running Emscripten tests... (Emscripten: Running sanity checks) test_openjpeg (__main__.default) ... get_shared_library_name needs to be impleme nted on Windows <building and saving openjpeg into cache> make: *** No targets specified and no makefile found. Stop. ERROR ====================================================================== ERROR: test_openjpeg (__main__.default) ---------------------------------------------------------------------- Traceback (most recent call last): File "tests/runner.py", line 5974, in test_openjpeg make_args=[]) # no -j 2, since parallel builds can fail File "tests/runner.py", line 329, in get_library copy_project=True, env_init=env_init) File "C:\Projects\emscripten\tools\shared.py", line 648, in build_library raise Exception('could not build library ' + name) Exception: could not build library openjpeg ---------------------------------------------------------------------- Ran 1 test in 30.450s FAILED (errors=1) ```
1.0
test_openjpeg fails on Windows. - Running test_openjpeg on Windows gives the following error: ``` C:\Projects\emscripten>python tests/runner.py test_openjpeg Running Emscripten tests... (Emscripten: Running sanity checks) test_openjpeg (__main__.default) ... get_shared_library_name needs to be impleme nted on Windows <building and saving openjpeg into cache> make: *** No targets specified and no makefile found. Stop. ERROR ====================================================================== ERROR: test_openjpeg (__main__.default) ---------------------------------------------------------------------- Traceback (most recent call last): File "tests/runner.py", line 5974, in test_openjpeg make_args=[]) # no -j 2, since parallel builds can fail File "tests/runner.py", line 329, in get_library copy_project=True, env_init=env_init) File "C:\Projects\emscripten\tools\shared.py", line 648, in build_library raise Exception('could not build library ' + name) Exception: could not build library openjpeg ---------------------------------------------------------------------- Ran 1 test in 30.450s FAILED (errors=1) ```
test
test openjpeg fails on windows running test openjpeg on windows gives the following error c projects emscripten python tests runner py test openjpeg running emscripten tests emscripten running sanity checks test openjpeg main default get shared library name needs to be impleme nted on windows make no targets specified and no makefile found stop error error test openjpeg main default traceback most recent call last file tests runner py line in test openjpeg make args no j since parallel builds can fail file tests runner py line in get library copy project true env init env init file c projects emscripten tools shared py line in build library raise exception could not build library name exception could not build library openjpeg ran test in failed errors
1
138,558
30,886,645,019
IssuesEvent
2023-08-03 22:39:46
microsoft/microsoft-ui-xaml
https://api.github.com/repos/microsoft/microsoft-ui-xaml
closed
Cannot bind to BitmapIconSource.UriSource in WinUI3 preview3
area-Binding team-Framework product-winui3 area-Icon code-vs-markup-mismatch no-issue-activity
**Describe the bug** <!-- Please enter a short, clear description of the bug --> <!-- For bugs related to UWP or the app models, please open a bug on the Project Reunion repository: https://github.com/microsoft/ProjectReunion --> It is not possible to bind the icon in a `TabViewItem` to a dynamically created `BitmapIconSource`. (But, setting it in XAML does work.) **Steps to reproduce the bug** <!-- Please provide any required setup and steps to reproduce the behavior --> 1. Create a new Blank App (WinUI in Desktop) 2. Replace the contents of `MainWindow.xaml` with: ```xml <TabView TabItemsSource="{x:Bind Tabs}"> <TabView.TabItemTemplate> <DataTemplate x:DataType="local:TabItem"> <TabViewItem Header="{x:Bind Header}"> <!-- UNCOMMENT FOR STEPS TWO AND THREE --> <!--IconSource="{x:Bind Icon}">--> <!-- COMMENT OUT FOR STEPS TWO AND THREE --> <TabViewItem.IconSource> <BitmapIconSource UriSource="/Images/dataset-icon.png" /> </TabViewItem.IconSource> </TabViewItem> </DataTemplate> </TabView.TabItemTemplate> </TabView> ``` 3. Replace the contents of `MainWindows.xaml.cs` with: ```cs public sealed partial class MainWindow : Window { public MainWindow() { this.Tabs = new ObservableCollection<TabItem> { new TabItem() }; this.InitializeComponent(); } public ObservableCollection<TabItem> Tabs { get; set; } } public class TabItem { // This is just to show that it is possible to bind this in the TabViewItem public string Header => "My tab"; public IconSource Icon { get { // This doesn't work (Just an arbitrary content image in the project) // UNCOMMENT FOR STEP THREE // return new BitmapIconSource { UriSource = new Uri("/Images/dataset-icon.png", UriKind.RelativeOrAbsolute) }; // This works // COMMENT OUT FOR STEP THREE return new SymbolIconSource { Symbol = Symbol.Placeholder }; } } } ``` 4. Add an `Images` folder to the project and add this file with a **Build Action** of `Content` ![dataset-icon](https://user-images.githubusercontent.com/189547/100364916-a87a9c00-2ff6-11eb-91a9-5f3273e4f512.png) 5. `STEP ONE` Run the app and see the icon displayed correctly when defined in XAML ![partial screenshot showing the displayed bitmap image](https://user-images.githubusercontent.com/189547/100366281-900b8100-2ff8-11eb-8614-97887657ae75.png) `STEP TWO` Comment and uncomment the XAML as per the instructions, then run the app again to see the icon defined via bindings for a SymbolIconSource ![partial screenshot showing the displayed symbol](https://user-images.githubusercontent.com/189547/100366757-26d83d80-2ff9-11eb-9f92-ef42e5dbb366.png) `STEP THREE` Comment and uncomment the C# code as per the instructions, then run the app See this error ```ascii System.ArgumentException HResult=0x80070057 Message=Value does not fall within the expected range. Source=WinRT.Runtime StackTrace: at WinRT.ExceptionHelpers.ThrowExceptionForHR(Int32 hr) at ABI.System.WinRTUriRuntimeClassFactory.CreateUri(String uri) at ABI.System.Uri.CreateMarshaler(Uri value) at ABI.Microsoft.UI.Xaml.Controls.IBitmapIconSource.global::Microsoft.UI.Xaml.Controls.IBitmapIconSource.set_UriSource(Uri value) at Microsoft.UI.Xaml.Controls.BitmapIconSource.set_UriSource(Uri value) at App73.TabItem.get_Icon() in C:\Users\matt\source\repos\App73\App73\App73\MainWindow.xaml.cs:line 40 at App73.MainWindow.MainWindow_obj4_Bindings.Update_(TabItem obj, Int32 phase) in C:\Users\matt\source\repos\App73\App73\App73\obj\x86\Debug\net5.0-windows10.0.18362.0\MainWindow.g.cs:line 209 at App73.MainWindow.MainWindow_obj4_Bindings.Update() in C:\Users\matt\source\repos\App73\App73\App73\obj\x86\Debug\net5.0-windows10.0.18362.0\MainWindow.g.cs:line 175 at App73.MainWindow.MainWindow_obj4_Bindings.DataContextChangedHandler(FrameworkElement sender, DataContextChangedEventArgs args) in C:\Users\matt\source\repos\App73\App73\App73\obj\x86\Debug\net5.0-windows10.0.18362.0\MainWindow.g.cs:line 114 ``` **Expected behavior** <!-- Please provide a description of what you expected to happen--> The icon should be displayed in the tab without error. **Screenshots** <!-- If applicable, add screenshots here to help explain your problem --> **Version Info** <!-- Please enter your WinUI NuGet package version, Windows app type (when using WinUI 3+), OS version(s), and form factor(s) --> NuGet package version: Microsoft.WinUI 3.0.0-preview3.201113.0 <!-- If you are using WinUI 3, please specify for which Windows app type you have encountered the issue. Leave blank if you didn't try that app type. --> Windows app type: | UWP | Win32 | | :--------------- | :--------------- | | <!-- Yes/No? --> | Yes | <!-- Which Windows versions did you see the issue on? Leave blank if you didn't try that version. --> | Windows 10 version | Saw the problem? | | :--------------------------------- | :-------------------- | | Insider Build (xxxxx) | <!-- Yes/No? --> | | May 2020 Update (19041) | Yes | | November 2019 Update (18363) | <!-- Yes/No? --> | | May 2019 Update (18362) | <!-- Yes/No? --> | | October 2018 Update (17763) | <!-- Yes/No? --> | | April 2018 Update (17134) | <!-- Yes/No? --> | | Fall Creators Update (16299) | <!-- Yes/No? --> | | Creators Update (15063) | <!-- Yes/No? --> | <!-- Which device form factors did you see the issue on? Leave blank if you didn't try that device. --> | Device form factor | Saw the problem? | | :----------------- | :--------------- | | Desktop | Yes | | Xbox | <!-- Yes/No? --> | | Surface Hub | <!-- Yes/No? --> | | IoT | <!-- Yes/No? --> | **Additional context** <!-- Enter any other applicable info here --> Note. this does not apply to WinUI2 as it doesn't support adding a `BitmapIconSource` to a `TabViewItem.IconSource`.
1.0
Cannot bind to BitmapIconSource.UriSource in WinUI3 preview3 - **Describe the bug** <!-- Please enter a short, clear description of the bug --> <!-- For bugs related to UWP or the app models, please open a bug on the Project Reunion repository: https://github.com/microsoft/ProjectReunion --> It is not possible to bind the icon in a `TabViewItem` to a dynamically created `BitmapIconSource`. (But, setting it in XAML does work.) **Steps to reproduce the bug** <!-- Please provide any required setup and steps to reproduce the behavior --> 1. Create a new Blank App (WinUI in Desktop) 2. Replace the contents of `MainWindow.xaml` with: ```xml <TabView TabItemsSource="{x:Bind Tabs}"> <TabView.TabItemTemplate> <DataTemplate x:DataType="local:TabItem"> <TabViewItem Header="{x:Bind Header}"> <!-- UNCOMMENT FOR STEPS TWO AND THREE --> <!--IconSource="{x:Bind Icon}">--> <!-- COMMENT OUT FOR STEPS TWO AND THREE --> <TabViewItem.IconSource> <BitmapIconSource UriSource="/Images/dataset-icon.png" /> </TabViewItem.IconSource> </TabViewItem> </DataTemplate> </TabView.TabItemTemplate> </TabView> ``` 3. Replace the contents of `MainWindows.xaml.cs` with: ```cs public sealed partial class MainWindow : Window { public MainWindow() { this.Tabs = new ObservableCollection<TabItem> { new TabItem() }; this.InitializeComponent(); } public ObservableCollection<TabItem> Tabs { get; set; } } public class TabItem { // This is just to show that it is possible to bind this in the TabViewItem public string Header => "My tab"; public IconSource Icon { get { // This doesn't work (Just an arbitrary content image in the project) // UNCOMMENT FOR STEP THREE // return new BitmapIconSource { UriSource = new Uri("/Images/dataset-icon.png", UriKind.RelativeOrAbsolute) }; // This works // COMMENT OUT FOR STEP THREE return new SymbolIconSource { Symbol = Symbol.Placeholder }; } } } ``` 4. Add an `Images` folder to the project and add this file with a **Build Action** of `Content` ![dataset-icon](https://user-images.githubusercontent.com/189547/100364916-a87a9c00-2ff6-11eb-91a9-5f3273e4f512.png) 5. `STEP ONE` Run the app and see the icon displayed correctly when defined in XAML ![partial screenshot showing the displayed bitmap image](https://user-images.githubusercontent.com/189547/100366281-900b8100-2ff8-11eb-8614-97887657ae75.png) `STEP TWO` Comment and uncomment the XAML as per the instructions, then run the app again to see the icon defined via bindings for a SymbolIconSource ![partial screenshot showing the displayed symbol](https://user-images.githubusercontent.com/189547/100366757-26d83d80-2ff9-11eb-9f92-ef42e5dbb366.png) `STEP THREE` Comment and uncomment the C# code as per the instructions, then run the app See this error ```ascii System.ArgumentException HResult=0x80070057 Message=Value does not fall within the expected range. Source=WinRT.Runtime StackTrace: at WinRT.ExceptionHelpers.ThrowExceptionForHR(Int32 hr) at ABI.System.WinRTUriRuntimeClassFactory.CreateUri(String uri) at ABI.System.Uri.CreateMarshaler(Uri value) at ABI.Microsoft.UI.Xaml.Controls.IBitmapIconSource.global::Microsoft.UI.Xaml.Controls.IBitmapIconSource.set_UriSource(Uri value) at Microsoft.UI.Xaml.Controls.BitmapIconSource.set_UriSource(Uri value) at App73.TabItem.get_Icon() in C:\Users\matt\source\repos\App73\App73\App73\MainWindow.xaml.cs:line 40 at App73.MainWindow.MainWindow_obj4_Bindings.Update_(TabItem obj, Int32 phase) in C:\Users\matt\source\repos\App73\App73\App73\obj\x86\Debug\net5.0-windows10.0.18362.0\MainWindow.g.cs:line 209 at App73.MainWindow.MainWindow_obj4_Bindings.Update() in C:\Users\matt\source\repos\App73\App73\App73\obj\x86\Debug\net5.0-windows10.0.18362.0\MainWindow.g.cs:line 175 at App73.MainWindow.MainWindow_obj4_Bindings.DataContextChangedHandler(FrameworkElement sender, DataContextChangedEventArgs args) in C:\Users\matt\source\repos\App73\App73\App73\obj\x86\Debug\net5.0-windows10.0.18362.0\MainWindow.g.cs:line 114 ``` **Expected behavior** <!-- Please provide a description of what you expected to happen--> The icon should be displayed in the tab without error. **Screenshots** <!-- If applicable, add screenshots here to help explain your problem --> **Version Info** <!-- Please enter your WinUI NuGet package version, Windows app type (when using WinUI 3+), OS version(s), and form factor(s) --> NuGet package version: Microsoft.WinUI 3.0.0-preview3.201113.0 <!-- If you are using WinUI 3, please specify for which Windows app type you have encountered the issue. Leave blank if you didn't try that app type. --> Windows app type: | UWP | Win32 | | :--------------- | :--------------- | | <!-- Yes/No? --> | Yes | <!-- Which Windows versions did you see the issue on? Leave blank if you didn't try that version. --> | Windows 10 version | Saw the problem? | | :--------------------------------- | :-------------------- | | Insider Build (xxxxx) | <!-- Yes/No? --> | | May 2020 Update (19041) | Yes | | November 2019 Update (18363) | <!-- Yes/No? --> | | May 2019 Update (18362) | <!-- Yes/No? --> | | October 2018 Update (17763) | <!-- Yes/No? --> | | April 2018 Update (17134) | <!-- Yes/No? --> | | Fall Creators Update (16299) | <!-- Yes/No? --> | | Creators Update (15063) | <!-- Yes/No? --> | <!-- Which device form factors did you see the issue on? Leave blank if you didn't try that device. --> | Device form factor | Saw the problem? | | :----------------- | :--------------- | | Desktop | Yes | | Xbox | <!-- Yes/No? --> | | Surface Hub | <!-- Yes/No? --> | | IoT | <!-- Yes/No? --> | **Additional context** <!-- Enter any other applicable info here --> Note. this does not apply to WinUI2 as it doesn't support adding a `BitmapIconSource` to a `TabViewItem.IconSource`.
non_test
cannot bind to bitmapiconsource urisource in describe the bug it is not possible to bind the icon in a tabviewitem to a dynamically created bitmapiconsource but setting it in xaml does work steps to reproduce the bug create a new blank app winui in desktop replace the contents of mainwindow xaml with xml tabviewitem header x bind header replace the contents of mainwindows xaml cs with cs public sealed partial class mainwindow window public mainwindow this tabs new observablecollection new tabitem this initializecomponent public observablecollection tabs get set public class tabitem this is just to show that it is possible to bind this in the tabviewitem public string header my tab public iconsource icon get this doesn t work just an arbitrary content image in the project uncomment for step three return new bitmapiconsource urisource new uri images dataset icon png urikind relativeorabsolute this works comment out for step three return new symboliconsource symbol symbol placeholder add an images folder to the project and add this file with a build action of content step one run the app and see the icon displayed correctly when defined in xaml step two comment and uncomment the xaml as per the instructions then run the app again to see the icon defined via bindings for a symboliconsource step three comment and uncomment the c code as per the instructions then run the app see this error ascii system argumentexception hresult message value does not fall within the expected range source winrt runtime stacktrace at winrt exceptionhelpers throwexceptionforhr hr at abi system winrturiruntimeclassfactory createuri string uri at abi system uri createmarshaler uri value at abi microsoft ui xaml controls ibitmapiconsource global microsoft ui xaml controls ibitmapiconsource set urisource uri value at microsoft ui xaml controls bitmapiconsource set urisource uri value at tabitem get icon in c users matt source repos mainwindow xaml cs line at mainwindow mainwindow bindings update tabitem obj phase in c users matt source repos obj debug mainwindow g cs line at mainwindow mainwindow bindings update in c users matt source repos obj debug mainwindow g cs line at mainwindow mainwindow bindings datacontextchangedhandler frameworkelement sender datacontextchangedeventargs args in c users matt source repos obj debug mainwindow g cs line expected behavior the icon should be displayed in the tab without error screenshots version info nuget package version microsoft winui windows app type uwp yes windows version saw the problem insider build xxxxx may update yes november update may update october update april update fall creators update creators update device form factor saw the problem desktop yes xbox surface hub iot additional context note this does not apply to as it doesn t support adding a bitmapiconsource to a tabviewitem iconsource
0
131,504
10,697,521,970
IssuesEvent
2019-10-23 16:41:56
elastic/kibana
https://api.github.com/repos/elastic/kibana
opened
Failing test: X-Pack Spaces API Integration Tests -- security_and_spaces.x-pack/test/spaces_api_integration/security_and_spaces/apis/copy_to_space·ts - spaces api with security copy to spaces rbac user with all at space from the default space "after each" hook for "should return 200 when copying to non-existent space"
failed-test
A test failed on a tracked branch ``` { Error: Request failed with status code 401 at createError (/dev/shm/workspace/kibana/node_modules/axios/lib/core/createError.js:16:15) at settle (/dev/shm/workspace/kibana/node_modules/axios/lib/core/settle.js:18:12) at IncomingMessage.handleStreamEnd (/dev/shm/workspace/kibana/node_modules/axios/lib/adapters/http.js:202:11) at endReadableNT (_stream_readable.js:1103:12) at process._tickCallback (internal/process/next_tick.js:63:19) config: { adapter: [Function: httpAdapter], transformRequest: { '0': [Function: transformRequest] }, transformResponse: { '0': [Function: transformResponse] }, timeout: 0, xsrfCookieName: 'XSRF-TOKEN', xsrfHeaderName: 'X-XSRF-TOKEN', maxContentLength: -1, validateStatus: [Function: validateStatus], headers: { Accept: 'application/json, text/plain, */*', 'kbn-xsrf': 'kbn-client', 'User-Agent': 'axios/0.18.1' }, method: 'get', url: 'http://elastic:changeme@localhost:6181/api/status', data: undefined, params: undefined }, request: ClientRequest { _events: [Object: null prototype] { socket: [Function], abort: [Function], aborted: [Function], error: [Function], timeout: [Function], prefinish: [Function: requestOnPrefinish] }, _eventsCount: 6, _maxListeners: undefined, output: [], outputEncodings: [], outputCallbacks: [], outputSize: 0, writable: true, _last: true, chunkedEncoding: false, shouldKeepAlive: false, useChunkedEncodingByDefault: false, sendDate: false, _removedConnection: false, _removedContLen: false, _removedTE: false, _contentLength: 0, _hasBody: true, _trailer: '', finished: true, _headerSent: true, socket: Socket { connecting: false, _hadError: false, _handle: null, _parent: null, _host: 'localhost', _readableState: [ReadableState], readable: false, _events: [Object], _eventsCount: 6, _maxListeners: undefined, _writableState: [WritableState], writable: false, allowHalfOpen: false, _sockname: null, _pendingData: null, _pendingEncoding: '', server: null, _server: null, parser: null, _httpMessage: [Circular], write: [Function: writeAfterFIN], [Symbol(asyncId)]: 201934, [Symbol(lastWriteQueueSize)]: 0, [Symbol(timeout)]: null, [Symbol(kBytesRead)]: 261, [Symbol(kBytesWritten)]: 207 }, connection: Socket { connecting: false, _hadError: false, _handle: null, _parent: null, _host: 'localhost', _readableState: [ReadableState], readable: false, _events: [Object], _eventsCount: 6, _maxListeners: undefined, _writableState: [WritableState], writable: false, allowHalfOpen: false, _sockname: null, _pendingData: null, _pendingEncoding: '', server: null, _server: null, parser: null, _httpMessage: [Circular], write: [Function: writeAfterFIN], [Symbol(asyncId)]: 201934, [Symbol(lastWriteQueueSize)]: 0, [Symbol(timeout)]: null, [Symbol(kBytesRead)]: 261, [Symbol(kBytesWritten)]: 207 }, _header: 'GET /api/status HTTP/1.1\r\nAccept: application/json, text/plain, */*\r\nkbn-xsrf: kbn-client\r\nUser-Agent: axios/0.18.1\r\nHost: localhost:6181\r\nAuthorization: Basic ZWxhc3RpYzpjaGFuZ2VtZQ==\r\nConnection: close\r\n\r\n', _onPendingData: [Function: noopPendingOutput], agent: Agent { _events: [Object], _eventsCount: 1, _maxListeners: undefined, defaultPort: 80, protocol: 'http:', options: [Object], requests: {}, sockets: {}, freeSockets: {}, keepAliveMsecs: 1000, keepAlive: false, maxSockets: Infinity, maxFreeSockets: 256 }, socketPath: undefined, timeout: undefined, method: 'GET', path: '/api/status', _ended: true, res: IncomingMessage { _readableState: [ReadableState], readable: false, _events: [Object], _eventsCount: 3, _maxListeners: undefined, socket: [Socket], connection: [Socket], httpVersionMajor: 1, httpVersionMinor: 1, httpVersion: '1.1', complete: true, headers: [Object], rawHeaders: [Array], trailers: {}, rawTrailers: [], aborted: false, upgrade: false, url: '', method: null, statusCode: 401, statusMessage: 'Unauthorized', client: [Socket], _consuming: false, _dumped: false, req: [Circular], responseUrl: 'http://elastic:changeme@localhost:6181/api/status', redirects: [] }, aborted: undefined, timeoutCb: null, upgradeOrConnect: false, parser: null, maxHeadersCount: null, _redirectable: Writable { _writableState: [WritableState], writable: true, _events: [Object], _eventsCount: 2, _maxListeners: undefined, _options: [Object], _redirectCount: 0, _redirects: [], _requestBodyLength: 0, _requestBodyBuffers: [], _onNativeResponse: [Function], _currentRequest: [Circular], _currentUrl: 'http://elastic:changeme@localhost:6181/api/status' }, [Symbol(isCorked)]: false, [Symbol(outHeadersKey)]: [Object: null prototype] { accept: [Array], 'kbn-xsrf': [Array], 'user-agent': [Array], host: [Array], authorization: [Array] } }, response: { status: 401, statusText: 'Unauthorized', headers: { 'kbn-name': 'kibana', 'content-type': 'application/json; charset=utf-8', 'cache-control': 'no-cache', 'content-length': '66', date: 'Wed, 23 Oct 2019 16:34:36 GMT', connection: 'close' }, config: { adapter: [Function: httpAdapter], transformRequest: [Object], transformResponse: [Object], timeout: 0, xsrfCookieName: 'XSRF-TOKEN', xsrfHeaderName: 'X-XSRF-TOKEN', maxContentLength: -1, validateStatus: [Function: validateStatus], headers: [Object], method: 'get', url: 'http://elastic:changeme@localhost:6181/api/status', data: undefined, params: undefined }, request: ClientRequest { _events: [Object], _eventsCount: 6, _maxListeners: undefined, output: [], outputEncodings: [], outputCallbacks: [], outputSize: 0, writable: true, _last: true, chunkedEncoding: false, shouldKeepAlive: false, useChunkedEncodingByDefault: false, sendDate: false, _removedConnection: false, _removedContLen: false, _removedTE: false, _contentLength: 0, _hasBody: true, _trailer: '', finished: true, _headerSent: true, socket: [Socket], connection: [Socket], _header: 'GET /api/status HTTP/1.1\r\nAccept: application/json, text/plain, */*\r\nkbn-xsrf: kbn-client\r\nUser-Agent: axios/0.18.1\r\nHost: localhost:6181\r\nAuthorization: Basic ZWxhc3RpYzpjaGFuZ2VtZQ==\r\nConnection: close\r\n\r\n', _onPendingData: [Function: noopPendingOutput], agent: [Agent], socketPath: undefined, timeout: undefined, method: 'GET', path: '/api/status', _ended: true, res: [IncomingMessage], aborted: undefined, timeoutCb: null, upgradeOrConnect: false, parser: null, maxHeadersCount: null, _redirectable: [Writable], [Symbol(isCorked)]: false, [Symbol(outHeadersKey)]: [Object] }, data: { statusCode: 401, error: 'Unauthorized', message: 'Unauthorized' } } } ``` First failure: [Jenkins Build](https://kibana-ci.elastic.co/job/elastic+kibana+7.4/197/) <!-- kibanaCiData = {"failed-test":{"test.class":"X-Pack Spaces API Integration Tests -- security_and_spaces.x-pack/test/spaces_api_integration/security_and_spaces/apis/copy_to_space·ts","test.name":"spaces api with security copy to spaces rbac user with all at space from the default space \"after each\" hook for \"should return 200 when copying to non-existent space\"","test.failCount":1}} -->
1.0
Failing test: X-Pack Spaces API Integration Tests -- security_and_spaces.x-pack/test/spaces_api_integration/security_and_spaces/apis/copy_to_space·ts - spaces api with security copy to spaces rbac user with all at space from the default space "after each" hook for "should return 200 when copying to non-existent space" - A test failed on a tracked branch ``` { Error: Request failed with status code 401 at createError (/dev/shm/workspace/kibana/node_modules/axios/lib/core/createError.js:16:15) at settle (/dev/shm/workspace/kibana/node_modules/axios/lib/core/settle.js:18:12) at IncomingMessage.handleStreamEnd (/dev/shm/workspace/kibana/node_modules/axios/lib/adapters/http.js:202:11) at endReadableNT (_stream_readable.js:1103:12) at process._tickCallback (internal/process/next_tick.js:63:19) config: { adapter: [Function: httpAdapter], transformRequest: { '0': [Function: transformRequest] }, transformResponse: { '0': [Function: transformResponse] }, timeout: 0, xsrfCookieName: 'XSRF-TOKEN', xsrfHeaderName: 'X-XSRF-TOKEN', maxContentLength: -1, validateStatus: [Function: validateStatus], headers: { Accept: 'application/json, text/plain, */*', 'kbn-xsrf': 'kbn-client', 'User-Agent': 'axios/0.18.1' }, method: 'get', url: 'http://elastic:changeme@localhost:6181/api/status', data: undefined, params: undefined }, request: ClientRequest { _events: [Object: null prototype] { socket: [Function], abort: [Function], aborted: [Function], error: [Function], timeout: [Function], prefinish: [Function: requestOnPrefinish] }, _eventsCount: 6, _maxListeners: undefined, output: [], outputEncodings: [], outputCallbacks: [], outputSize: 0, writable: true, _last: true, chunkedEncoding: false, shouldKeepAlive: false, useChunkedEncodingByDefault: false, sendDate: false, _removedConnection: false, _removedContLen: false, _removedTE: false, _contentLength: 0, _hasBody: true, _trailer: '', finished: true, _headerSent: true, socket: Socket { connecting: false, _hadError: false, _handle: null, _parent: null, _host: 'localhost', _readableState: [ReadableState], readable: false, _events: [Object], _eventsCount: 6, _maxListeners: undefined, _writableState: [WritableState], writable: false, allowHalfOpen: false, _sockname: null, _pendingData: null, _pendingEncoding: '', server: null, _server: null, parser: null, _httpMessage: [Circular], write: [Function: writeAfterFIN], [Symbol(asyncId)]: 201934, [Symbol(lastWriteQueueSize)]: 0, [Symbol(timeout)]: null, [Symbol(kBytesRead)]: 261, [Symbol(kBytesWritten)]: 207 }, connection: Socket { connecting: false, _hadError: false, _handle: null, _parent: null, _host: 'localhost', _readableState: [ReadableState], readable: false, _events: [Object], _eventsCount: 6, _maxListeners: undefined, _writableState: [WritableState], writable: false, allowHalfOpen: false, _sockname: null, _pendingData: null, _pendingEncoding: '', server: null, _server: null, parser: null, _httpMessage: [Circular], write: [Function: writeAfterFIN], [Symbol(asyncId)]: 201934, [Symbol(lastWriteQueueSize)]: 0, [Symbol(timeout)]: null, [Symbol(kBytesRead)]: 261, [Symbol(kBytesWritten)]: 207 }, _header: 'GET /api/status HTTP/1.1\r\nAccept: application/json, text/plain, */*\r\nkbn-xsrf: kbn-client\r\nUser-Agent: axios/0.18.1\r\nHost: localhost:6181\r\nAuthorization: Basic ZWxhc3RpYzpjaGFuZ2VtZQ==\r\nConnection: close\r\n\r\n', _onPendingData: [Function: noopPendingOutput], agent: Agent { _events: [Object], _eventsCount: 1, _maxListeners: undefined, defaultPort: 80, protocol: 'http:', options: [Object], requests: {}, sockets: {}, freeSockets: {}, keepAliveMsecs: 1000, keepAlive: false, maxSockets: Infinity, maxFreeSockets: 256 }, socketPath: undefined, timeout: undefined, method: 'GET', path: '/api/status', _ended: true, res: IncomingMessage { _readableState: [ReadableState], readable: false, _events: [Object], _eventsCount: 3, _maxListeners: undefined, socket: [Socket], connection: [Socket], httpVersionMajor: 1, httpVersionMinor: 1, httpVersion: '1.1', complete: true, headers: [Object], rawHeaders: [Array], trailers: {}, rawTrailers: [], aborted: false, upgrade: false, url: '', method: null, statusCode: 401, statusMessage: 'Unauthorized', client: [Socket], _consuming: false, _dumped: false, req: [Circular], responseUrl: 'http://elastic:changeme@localhost:6181/api/status', redirects: [] }, aborted: undefined, timeoutCb: null, upgradeOrConnect: false, parser: null, maxHeadersCount: null, _redirectable: Writable { _writableState: [WritableState], writable: true, _events: [Object], _eventsCount: 2, _maxListeners: undefined, _options: [Object], _redirectCount: 0, _redirects: [], _requestBodyLength: 0, _requestBodyBuffers: [], _onNativeResponse: [Function], _currentRequest: [Circular], _currentUrl: 'http://elastic:changeme@localhost:6181/api/status' }, [Symbol(isCorked)]: false, [Symbol(outHeadersKey)]: [Object: null prototype] { accept: [Array], 'kbn-xsrf': [Array], 'user-agent': [Array], host: [Array], authorization: [Array] } }, response: { status: 401, statusText: 'Unauthorized', headers: { 'kbn-name': 'kibana', 'content-type': 'application/json; charset=utf-8', 'cache-control': 'no-cache', 'content-length': '66', date: 'Wed, 23 Oct 2019 16:34:36 GMT', connection: 'close' }, config: { adapter: [Function: httpAdapter], transformRequest: [Object], transformResponse: [Object], timeout: 0, xsrfCookieName: 'XSRF-TOKEN', xsrfHeaderName: 'X-XSRF-TOKEN', maxContentLength: -1, validateStatus: [Function: validateStatus], headers: [Object], method: 'get', url: 'http://elastic:changeme@localhost:6181/api/status', data: undefined, params: undefined }, request: ClientRequest { _events: [Object], _eventsCount: 6, _maxListeners: undefined, output: [], outputEncodings: [], outputCallbacks: [], outputSize: 0, writable: true, _last: true, chunkedEncoding: false, shouldKeepAlive: false, useChunkedEncodingByDefault: false, sendDate: false, _removedConnection: false, _removedContLen: false, _removedTE: false, _contentLength: 0, _hasBody: true, _trailer: '', finished: true, _headerSent: true, socket: [Socket], connection: [Socket], _header: 'GET /api/status HTTP/1.1\r\nAccept: application/json, text/plain, */*\r\nkbn-xsrf: kbn-client\r\nUser-Agent: axios/0.18.1\r\nHost: localhost:6181\r\nAuthorization: Basic ZWxhc3RpYzpjaGFuZ2VtZQ==\r\nConnection: close\r\n\r\n', _onPendingData: [Function: noopPendingOutput], agent: [Agent], socketPath: undefined, timeout: undefined, method: 'GET', path: '/api/status', _ended: true, res: [IncomingMessage], aborted: undefined, timeoutCb: null, upgradeOrConnect: false, parser: null, maxHeadersCount: null, _redirectable: [Writable], [Symbol(isCorked)]: false, [Symbol(outHeadersKey)]: [Object] }, data: { statusCode: 401, error: 'Unauthorized', message: 'Unauthorized' } } } ``` First failure: [Jenkins Build](https://kibana-ci.elastic.co/job/elastic+kibana+7.4/197/) <!-- kibanaCiData = {"failed-test":{"test.class":"X-Pack Spaces API Integration Tests -- security_and_spaces.x-pack/test/spaces_api_integration/security_and_spaces/apis/copy_to_space·ts","test.name":"spaces api with security copy to spaces rbac user with all at space from the default space \"after each\" hook for \"should return 200 when copying to non-existent space\"","test.failCount":1}} -->
test
failing test x pack spaces api integration tests security and spaces x pack test spaces api integration security and spaces apis copy to space·ts spaces api with security copy to spaces rbac user with all at space from the default space after each hook for should return when copying to non existent space a test failed on a tracked branch error request failed with status code at createerror dev shm workspace kibana node modules axios lib core createerror js at settle dev shm workspace kibana node modules axios lib core settle js at incomingmessage handlestreamend dev shm workspace kibana node modules axios lib adapters http js at endreadablent stream readable js at process tickcallback internal process next tick js config adapter transformrequest transformresponse timeout xsrfcookiename xsrf token xsrfheadername x xsrf token maxcontentlength validatestatus headers accept application json text plain kbn xsrf kbn client user agent axios method get url data undefined params undefined request clientrequest events socket abort aborted error timeout prefinish eventscount maxlisteners undefined output outputencodings outputcallbacks outputsize writable true last true chunkedencoding false shouldkeepalive false usechunkedencodingbydefault false senddate false removedconnection false removedcontlen false removedte false contentlength hasbody true trailer finished true headersent true socket socket connecting false haderror false handle null parent null host localhost readablestate readable false events eventscount maxlisteners undefined writablestate writable false allowhalfopen false sockname null pendingdata null pendingencoding server null server null parser null httpmessage write null connection socket connecting false haderror false handle null parent null host localhost readablestate readable false events eventscount maxlisteners undefined writablestate writable false allowhalfopen false sockname null pendingdata null pendingencoding server null server null parser null httpmessage write null header get api status http r naccept application json text plain r nkbn xsrf kbn client r nuser agent axios r nhost localhost r nauthorization basic r nconnection close r n r n onpendingdata agent agent events eventscount maxlisteners undefined defaultport protocol http options requests sockets freesockets keepalivemsecs keepalive false maxsockets infinity maxfreesockets socketpath undefined timeout undefined method get path api status ended true res incomingmessage readablestate readable false events eventscount maxlisteners undefined socket connection httpversionmajor httpversionminor httpversion complete true headers rawheaders trailers rawtrailers aborted false upgrade false url method null statuscode statusmessage unauthorized client consuming false dumped false req responseurl redirects aborted undefined timeoutcb null upgradeorconnect false parser null maxheaderscount null redirectable writable writablestate writable true events eventscount maxlisteners undefined options redirectcount redirects requestbodylength requestbodybuffers onnativeresponse currentrequest currenturl false accept kbn xsrf user agent host authorization response status statustext unauthorized headers kbn name kibana content type application json charset utf cache control no cache content length date wed oct gmt connection close config adapter transformrequest transformresponse timeout xsrfcookiename xsrf token xsrfheadername x xsrf token maxcontentlength validatestatus headers method get url data undefined params undefined request clientrequest events eventscount maxlisteners undefined output outputencodings outputcallbacks outputsize writable true last true chunkedencoding false shouldkeepalive false usechunkedencodingbydefault false senddate false removedconnection false removedcontlen false removedte false contentlength hasbody true trailer finished true headersent true socket connection header get api status http r naccept application json text plain r nkbn xsrf kbn client r nuser agent axios r nhost localhost r nauthorization basic r nconnection close r n r n onpendingdata agent socketpath undefined timeout undefined method get path api status ended true res aborted undefined timeoutcb null upgradeorconnect false parser null maxheaderscount null redirectable false data statuscode error unauthorized message unauthorized first failure
1
217,275
16,848,848,730
IssuesEvent
2021-06-20 04:17:23
hakehuang/infoflow
https://api.github.com/repos/hakehuang/infoflow
opened
tests-ci :kernel.memory_protection.create_new_thread_from_user_huge_stacksize : zephyr-v2.6.0-286-g46029914a7ac: lpcxpresso55s28: test Timeout
area: Tests
**Describe the bug** kernel.memory_protection.create_new_thread_from_user_huge_stacksize test is Timeout on zephyr-v2.6.0-286-g46029914a7ac on lpcxpresso55s28 see logs for details **To Reproduce** 1. ``` scripts/twister --device-testing --device-serial /dev/ttyACM0 -p lpcxpresso55s28 --testcase-root tests --sub-test kernel.memory_protection ``` 2. See error **Expected behavior** test pass **Impact** **Logs and console output** ``` - *** Booting Zephyr OS build zephyr-v2.6.0-286-g46029914a7ac *** Running test suite memory_protection_test_suite =================================================================== START - test_permission_inheritance ASSERTION FAIL [esf != ((void *)0)] @ WEST_TOPDIR/zephyr/arch/arm/core/aarch32/cortex_m/fault.c:993 ESF could not be retrieved successfully. Shall never occur. ASSERTION FAIL [esf != ((void *)0)] @ WEST_TOPDIR/zephyr/arch/arm/core/aarch32/cortex_m/fault.c:993 ESF could not be retrieved successfully. Shall never occur. ``` **Environment (please complete the following information):** - OS: (e.g. Linux ) - Toolchain (e.g Zephyr SDK) - Commit SHA or Version used: zephyr-v2.6.0-286-g46029914a7ac
1.0
tests-ci :kernel.memory_protection.create_new_thread_from_user_huge_stacksize : zephyr-v2.6.0-286-g46029914a7ac: lpcxpresso55s28: test Timeout - **Describe the bug** kernel.memory_protection.create_new_thread_from_user_huge_stacksize test is Timeout on zephyr-v2.6.0-286-g46029914a7ac on lpcxpresso55s28 see logs for details **To Reproduce** 1. ``` scripts/twister --device-testing --device-serial /dev/ttyACM0 -p lpcxpresso55s28 --testcase-root tests --sub-test kernel.memory_protection ``` 2. See error **Expected behavior** test pass **Impact** **Logs and console output** ``` - *** Booting Zephyr OS build zephyr-v2.6.0-286-g46029914a7ac *** Running test suite memory_protection_test_suite =================================================================== START - test_permission_inheritance ASSERTION FAIL [esf != ((void *)0)] @ WEST_TOPDIR/zephyr/arch/arm/core/aarch32/cortex_m/fault.c:993 ESF could not be retrieved successfully. Shall never occur. ASSERTION FAIL [esf != ((void *)0)] @ WEST_TOPDIR/zephyr/arch/arm/core/aarch32/cortex_m/fault.c:993 ESF could not be retrieved successfully. Shall never occur. ``` **Environment (please complete the following information):** - OS: (e.g. Linux ) - Toolchain (e.g Zephyr SDK) - Commit SHA or Version used: zephyr-v2.6.0-286-g46029914a7ac
test
tests ci kernel memory protection create new thread from user huge stacksize zephyr test timeout describe the bug kernel memory protection create new thread from user huge stacksize test is timeout on zephyr on see logs for details to reproduce scripts twister device testing device serial dev p testcase root tests sub test kernel memory protection see error expected behavior test pass impact logs and console output booting zephyr os build zephyr running test suite memory protection test suite start test permission inheritance assertion fail west topdir zephyr arch arm core cortex m fault c esf could not be retrieved successfully shall never occur assertion fail west topdir zephyr arch arm core cortex m fault c esf could not be retrieved successfully shall never occur environment please complete the following information os e g linux toolchain e g zephyr sdk commit sha or version used zephyr
1
144,700
11,627,302,203
IssuesEvent
2020-02-27 16:19:00
Oldes/Rebol-issues
https://api.github.com/repos/Oldes/Rebol-issues
closed
WISH: BMP encoder could support transparency
Datatype: image! Oldes.resolved Test.written
_Submitted by:_ _**Oldes**_ In all `r3-alpha` when one save image with transparency as a BMP file, the transparency info is not used. ``` >> img: make image! [1x1 255.0.0.10] == make image! [1x1 #{ FF0000 } #{ 0A }] >> save %test.bmp img >> load %test.bmp == make image! [1x1 #{ FF0000 }] ``` --- <sup>**Imported from**: https://github.com/rebol/rebol-issues/issues/2345</sup> Comments: --- > **Oldes** added a commit to **[Oldes/Rebol3](https://github.com/Oldes/Rebol3/)** that referenced this issue on Jan 15, 2019: > [FEAT: added support to encode/decode images as uncompressed BMP with …](https://github.com/Oldes/Rebol3/commit/661ee3851e94b1aedd4db8444de487139d852ee4) ---
1.0
WISH: BMP encoder could support transparency - _Submitted by:_ _**Oldes**_ In all `r3-alpha` when one save image with transparency as a BMP file, the transparency info is not used. ``` >> img: make image! [1x1 255.0.0.10] == make image! [1x1 #{ FF0000 } #{ 0A }] >> save %test.bmp img >> load %test.bmp == make image! [1x1 #{ FF0000 }] ``` --- <sup>**Imported from**: https://github.com/rebol/rebol-issues/issues/2345</sup> Comments: --- > **Oldes** added a commit to **[Oldes/Rebol3](https://github.com/Oldes/Rebol3/)** that referenced this issue on Jan 15, 2019: > [FEAT: added support to encode/decode images as uncompressed BMP with …](https://github.com/Oldes/Rebol3/commit/661ee3851e94b1aedd4db8444de487139d852ee4) ---
test
wish bmp encoder could support transparency submitted by oldes in all alpha when one save image with transparency as a bmp file the transparency info is not used img make image make image save test bmp img load test bmp make image imported from comments oldes added a commit to that referenced this issue on jan
1
60,772
6,714,628,537
IssuesEvent
2017-10-13 17:42:19
astropy/astropy
https://api.github.com/repos/astropy/astropy
closed
Revisit xpassed tests and remove xfail from them
Effort-low Enhancement Package-intermediate table testing
For example, there are 3 `xpassed` tests in https://travis-ci.org/astropy/astropy/jobs/283303458 and https://ci.appveyor.com/project/Astropy/astropy/build/1.0.8822 , respectively (probably the same ones). We should remove `xfail` from those because they are no longer failing. ``` astropy\table\tests\test_mixin.py .....................................sss.s.s...................................................X............. astropy\table\tests\test_operations.py .......x...x.x.x...........x.....x.......................x...xXX.x.........................x............. ``` Hint: Using this setting turns any `xpass` into a failure (ref: https://docs.pytest.org/en/latest/skipping.html). ``` [tool:pytest] xfail_strict=true ```
1.0
Revisit xpassed tests and remove xfail from them - For example, there are 3 `xpassed` tests in https://travis-ci.org/astropy/astropy/jobs/283303458 and https://ci.appveyor.com/project/Astropy/astropy/build/1.0.8822 , respectively (probably the same ones). We should remove `xfail` from those because they are no longer failing. ``` astropy\table\tests\test_mixin.py .....................................sss.s.s...................................................X............. astropy\table\tests\test_operations.py .......x...x.x.x...........x.....x.......................x...xXX.x.........................x............. ``` Hint: Using this setting turns any `xpass` into a failure (ref: https://docs.pytest.org/en/latest/skipping.html). ``` [tool:pytest] xfail_strict=true ```
test
revisit xpassed tests and remove xfail from them for example there are xpassed tests in and respectively probably the same ones we should remove xfail from those because they are no longer failing astropy table tests test mixin py sss s s x astropy table tests test operations py x x x x x x x xxx x x hint using this setting turns any xpass into a failure ref xfail strict true
1
296,116
25,529,514,736
IssuesEvent
2022-11-29 07:03:31
cockroachdb/cockroach
https://api.github.com/repos/cockroachdb/cockroach
opened
ccl/backupccl: TestDataDriven failed
C-test-failure O-robot branch-master
ccl/backupccl.TestDataDriven [failed](https://teamcity.cockroachdb.com/buildConfiguration/Cockroach_Nightlies_StressBazel/7742934?buildTab=log) with [artifacts](https://teamcity.cockroachdb.com/buildConfiguration/Cockroach_Nightlies_StressBazel/7742934?buildTab=artifacts#/) on master @ [2b595c5214aead3e7d4f47f9a1dedce57dba6e7f](https://github.com/cockroachdb/cockroach/commits/2b595c5214aead3e7d4f47f9a1dedce57dba6e7f): ``` exec-sql [0 args] BACKUP INTO 'nodelocal://1/no_region_cluster_backup/'; ---- datadriven_test.go:398: /home/roach/.cache/bazel/_bazel_roach/c5a4e7d36696d9cd970af2045211a7df/sandbox/processwrapper-sandbox/3524/execroot/com_github_cockroachdb_cockroach/bazel-out/k8-fastbuild/bin/pkg/ccl/backupccl/backupccl_test_/backupccl_test.runfiles/com_github_cockroachdb_cockroach/pkg/ccl/backupccl/testdata/backup-restore/restore-schema-only-multiregion:92: exec-sql [0 args] DROP DATABASE no_region_db; ---- datadriven_test.go:398: /home/roach/.cache/bazel/_bazel_roach/c5a4e7d36696d9cd970af2045211a7df/sandbox/processwrapper-sandbox/3524/execroot/com_github_cockroachdb_cockroach/bazel-out/k8-fastbuild/bin/pkg/ccl/backupccl/backupccl_test_/backupccl_test.runfiles/com_github_cockroachdb_cockroach/pkg/ccl/backupccl/testdata/backup-restore/restore-schema-only-multiregion:96: exec-sql [0 args] DROP DATABASE no_region_db_2; ---- datadriven_test.go:398: /home/roach/.cache/bazel/_bazel_roach/c5a4e7d36696d9cd970af2045211a7df/sandbox/processwrapper-sandbox/3524/execroot/com_github_cockroachdb_cockroach/bazel-out/k8-fastbuild/bin/pkg/ccl/backupccl/backupccl_test_/backupccl_test.runfiles/com_github_cockroachdb_cockroach/pkg/ccl/backupccl/testdata/backup-restore/restore-schema-only-multiregion:100: exec-sql [1 args] SET CLUSTER SETTING sql.defaults.primary_region = 'non-existent-region'; ---- datadriven_test.go:398: /home/roach/.cache/bazel/_bazel_roach/c5a4e7d36696d9cd970af2045211a7df/sandbox/processwrapper-sandbox/3524/execroot/com_github_cockroachdb_cockroach/bazel-out/k8-fastbuild/bin/pkg/ccl/backupccl/backupccl_test_/backupccl_test.runfiles/com_github_cockroachdb_cockroach/pkg/ccl/backupccl/testdata/backup-restore/restore-schema-only-multiregion:104: exec-sql [0 args] RESTORE DATABASE no_region_db FROM LATEST IN 'nodelocal://1/no_region_database_backup/' with schema_only; ---- pq: region "non-existent-region" does not exist HINT: valid regions: eu-central-1, eu-north-1 -- set the default PRIMARY REGION to a region that exists (see SHOW REGIONS FROM CLUSTER) then using SET CLUSTER SETTING sql.defaults.primary_region = 'region' datadriven_test.go:398: /home/roach/.cache/bazel/_bazel_roach/c5a4e7d36696d9cd970af2045211a7df/sandbox/processwrapper-sandbox/3524/execroot/com_github_cockroachdb_cockroach/bazel-out/k8-fastbuild/bin/pkg/ccl/backupccl/backupccl_test_/backupccl_test.runfiles/com_github_cockroachdb_cockroach/pkg/ccl/backupccl/testdata/backup-restore/restore-schema-only-multiregion:112: exec-sql [1 args] SET CLUSTER SETTING sql.defaults.primary_region = 'eu-central-1'; ---- datadriven_test.go:398: /home/roach/.cache/bazel/_bazel_roach/c5a4e7d36696d9cd970af2045211a7df/sandbox/processwrapper-sandbox/3524/execroot/com_github_cockroachdb_cockroach/bazel-out/k8-fastbuild/bin/pkg/ccl/backupccl/backupccl_test_/backupccl_test.runfiles/com_github_cockroachdb_cockroach/pkg/ccl/backupccl/testdata/backup-restore/restore-schema-only-multiregion:116: RESTORE DATABASE no_region_db FROM LATEST IN 'nodelocal://1/no_region_database_backup/' with schema_only; expected: NOTICE: setting the PRIMARY REGION as eu-central-1 on database no_region_db HINT: to change the default primary region, use SET CLUSTER SETTING sql.defaults.primary_region = 'region' or use RESET CLUSTER SETTING sql.defaults.primary_region to disable this behavior found: pq: region "non-existent-region" does not exist HINT: valid regions: eu-central-1, eu-north-1 -- set the default PRIMARY REGION to a region that exists (see SHOW REGIONS FROM CLUSTER) then using SET CLUSTER SETTING sql.defaults.primary_region = 'region' testutils.go:199: no Invalid Descriptors testutils.go:199: no Invalid Descriptors testutils.go:199: no Invalid Descriptors testutils.go:181: Warning: Could not check for invalid descriptors: sql: database is closed testutils.go:181: Warning: Could not check for invalid descriptors: sql: database is closed testutils.go:181: Warning: Could not check for invalid descriptors: sql: database is closed --- FAIL: TestDataDriven/restore-schema-only-multiregion (35.62s) ``` <p>Parameters: <code>TAGS=bazel,gss</code> </p> <details><summary>Help</summary> <p> See also: [How To Investigate a Go Test Failure \(internal\)](https://cockroachlabs.atlassian.net/l/c/HgfXfJgM) </p> </details> /cc @cockroachdb/disaster-recovery <sub> [This test on roachdash](https://roachdash.crdb.dev/?filter=status:open%20t:.*TestDataDriven.*&sort=title+created&display=lastcommented+project) | [Improve this report!](https://github.com/cockroachdb/cockroach/tree/master/pkg/cmd/internal/issues) </sub>
1.0
ccl/backupccl: TestDataDriven failed - ccl/backupccl.TestDataDriven [failed](https://teamcity.cockroachdb.com/buildConfiguration/Cockroach_Nightlies_StressBazel/7742934?buildTab=log) with [artifacts](https://teamcity.cockroachdb.com/buildConfiguration/Cockroach_Nightlies_StressBazel/7742934?buildTab=artifacts#/) on master @ [2b595c5214aead3e7d4f47f9a1dedce57dba6e7f](https://github.com/cockroachdb/cockroach/commits/2b595c5214aead3e7d4f47f9a1dedce57dba6e7f): ``` exec-sql [0 args] BACKUP INTO 'nodelocal://1/no_region_cluster_backup/'; ---- datadriven_test.go:398: /home/roach/.cache/bazel/_bazel_roach/c5a4e7d36696d9cd970af2045211a7df/sandbox/processwrapper-sandbox/3524/execroot/com_github_cockroachdb_cockroach/bazel-out/k8-fastbuild/bin/pkg/ccl/backupccl/backupccl_test_/backupccl_test.runfiles/com_github_cockroachdb_cockroach/pkg/ccl/backupccl/testdata/backup-restore/restore-schema-only-multiregion:92: exec-sql [0 args] DROP DATABASE no_region_db; ---- datadriven_test.go:398: /home/roach/.cache/bazel/_bazel_roach/c5a4e7d36696d9cd970af2045211a7df/sandbox/processwrapper-sandbox/3524/execroot/com_github_cockroachdb_cockroach/bazel-out/k8-fastbuild/bin/pkg/ccl/backupccl/backupccl_test_/backupccl_test.runfiles/com_github_cockroachdb_cockroach/pkg/ccl/backupccl/testdata/backup-restore/restore-schema-only-multiregion:96: exec-sql [0 args] DROP DATABASE no_region_db_2; ---- datadriven_test.go:398: /home/roach/.cache/bazel/_bazel_roach/c5a4e7d36696d9cd970af2045211a7df/sandbox/processwrapper-sandbox/3524/execroot/com_github_cockroachdb_cockroach/bazel-out/k8-fastbuild/bin/pkg/ccl/backupccl/backupccl_test_/backupccl_test.runfiles/com_github_cockroachdb_cockroach/pkg/ccl/backupccl/testdata/backup-restore/restore-schema-only-multiregion:100: exec-sql [1 args] SET CLUSTER SETTING sql.defaults.primary_region = 'non-existent-region'; ---- datadriven_test.go:398: /home/roach/.cache/bazel/_bazel_roach/c5a4e7d36696d9cd970af2045211a7df/sandbox/processwrapper-sandbox/3524/execroot/com_github_cockroachdb_cockroach/bazel-out/k8-fastbuild/bin/pkg/ccl/backupccl/backupccl_test_/backupccl_test.runfiles/com_github_cockroachdb_cockroach/pkg/ccl/backupccl/testdata/backup-restore/restore-schema-only-multiregion:104: exec-sql [0 args] RESTORE DATABASE no_region_db FROM LATEST IN 'nodelocal://1/no_region_database_backup/' with schema_only; ---- pq: region "non-existent-region" does not exist HINT: valid regions: eu-central-1, eu-north-1 -- set the default PRIMARY REGION to a region that exists (see SHOW REGIONS FROM CLUSTER) then using SET CLUSTER SETTING sql.defaults.primary_region = 'region' datadriven_test.go:398: /home/roach/.cache/bazel/_bazel_roach/c5a4e7d36696d9cd970af2045211a7df/sandbox/processwrapper-sandbox/3524/execroot/com_github_cockroachdb_cockroach/bazel-out/k8-fastbuild/bin/pkg/ccl/backupccl/backupccl_test_/backupccl_test.runfiles/com_github_cockroachdb_cockroach/pkg/ccl/backupccl/testdata/backup-restore/restore-schema-only-multiregion:112: exec-sql [1 args] SET CLUSTER SETTING sql.defaults.primary_region = 'eu-central-1'; ---- datadriven_test.go:398: /home/roach/.cache/bazel/_bazel_roach/c5a4e7d36696d9cd970af2045211a7df/sandbox/processwrapper-sandbox/3524/execroot/com_github_cockroachdb_cockroach/bazel-out/k8-fastbuild/bin/pkg/ccl/backupccl/backupccl_test_/backupccl_test.runfiles/com_github_cockroachdb_cockroach/pkg/ccl/backupccl/testdata/backup-restore/restore-schema-only-multiregion:116: RESTORE DATABASE no_region_db FROM LATEST IN 'nodelocal://1/no_region_database_backup/' with schema_only; expected: NOTICE: setting the PRIMARY REGION as eu-central-1 on database no_region_db HINT: to change the default primary region, use SET CLUSTER SETTING sql.defaults.primary_region = 'region' or use RESET CLUSTER SETTING sql.defaults.primary_region to disable this behavior found: pq: region "non-existent-region" does not exist HINT: valid regions: eu-central-1, eu-north-1 -- set the default PRIMARY REGION to a region that exists (see SHOW REGIONS FROM CLUSTER) then using SET CLUSTER SETTING sql.defaults.primary_region = 'region' testutils.go:199: no Invalid Descriptors testutils.go:199: no Invalid Descriptors testutils.go:199: no Invalid Descriptors testutils.go:181: Warning: Could not check for invalid descriptors: sql: database is closed testutils.go:181: Warning: Could not check for invalid descriptors: sql: database is closed testutils.go:181: Warning: Could not check for invalid descriptors: sql: database is closed --- FAIL: TestDataDriven/restore-schema-only-multiregion (35.62s) ``` <p>Parameters: <code>TAGS=bazel,gss</code> </p> <details><summary>Help</summary> <p> See also: [How To Investigate a Go Test Failure \(internal\)](https://cockroachlabs.atlassian.net/l/c/HgfXfJgM) </p> </details> /cc @cockroachdb/disaster-recovery <sub> [This test on roachdash](https://roachdash.crdb.dev/?filter=status:open%20t:.*TestDataDriven.*&sort=title+created&display=lastcommented+project) | [Improve this report!](https://github.com/cockroachdb/cockroach/tree/master/pkg/cmd/internal/issues) </sub>
test
ccl backupccl testdatadriven failed ccl backupccl testdatadriven with on master exec sql backup into nodelocal no region cluster backup datadriven test go home roach cache bazel bazel roach sandbox processwrapper sandbox execroot com github cockroachdb cockroach bazel out fastbuild bin pkg ccl backupccl backupccl test backupccl test runfiles com github cockroachdb cockroach pkg ccl backupccl testdata backup restore restore schema only multiregion exec sql drop database no region db datadriven test go home roach cache bazel bazel roach sandbox processwrapper sandbox execroot com github cockroachdb cockroach bazel out fastbuild bin pkg ccl backupccl backupccl test backupccl test runfiles com github cockroachdb cockroach pkg ccl backupccl testdata backup restore restore schema only multiregion exec sql drop database no region db datadriven test go home roach cache bazel bazel roach sandbox processwrapper sandbox execroot com github cockroachdb cockroach bazel out fastbuild bin pkg ccl backupccl backupccl test backupccl test runfiles com github cockroachdb cockroach pkg ccl backupccl testdata backup restore restore schema only multiregion exec sql set cluster setting sql defaults primary region non existent region datadriven test go home roach cache bazel bazel roach sandbox processwrapper sandbox execroot com github cockroachdb cockroach bazel out fastbuild bin pkg ccl backupccl backupccl test backupccl test runfiles com github cockroachdb cockroach pkg ccl backupccl testdata backup restore restore schema only multiregion exec sql restore database no region db from latest in nodelocal no region database backup with schema only pq region non existent region does not exist hint valid regions eu central eu north set the default primary region to a region that exists see show regions from cluster then using set cluster setting sql defaults primary region region datadriven test go home roach cache bazel bazel roach sandbox processwrapper sandbox execroot com github cockroachdb cockroach bazel out fastbuild bin pkg ccl backupccl backupccl test backupccl test runfiles com github cockroachdb cockroach pkg ccl backupccl testdata backup restore restore schema only multiregion exec sql set cluster setting sql defaults primary region eu central datadriven test go home roach cache bazel bazel roach sandbox processwrapper sandbox execroot com github cockroachdb cockroach bazel out fastbuild bin pkg ccl backupccl backupccl test backupccl test runfiles com github cockroachdb cockroach pkg ccl backupccl testdata backup restore restore schema only multiregion restore database no region db from latest in nodelocal no region database backup with schema only expected notice setting the primary region as eu central on database no region db hint to change the default primary region use set cluster setting sql defaults primary region region or use reset cluster setting sql defaults primary region to disable this behavior found pq region non existent region does not exist hint valid regions eu central eu north set the default primary region to a region that exists see show regions from cluster then using set cluster setting sql defaults primary region region testutils go no invalid descriptors testutils go no invalid descriptors testutils go no invalid descriptors testutils go warning could not check for invalid descriptors sql database is closed testutils go warning could not check for invalid descriptors sql database is closed testutils go warning could not check for invalid descriptors sql database is closed fail testdatadriven restore schema only multiregion parameters tags bazel gss help see also cc cockroachdb disaster recovery
1
7,020
3,933,956,315
IssuesEvent
2016-04-25 20:54:04
jens-maus/yam
https://api.github.com/repos/jens-maus/yam
closed
Birthday feature broken
#minor @undecided bug fixed GUI nightly build
**Originally by _mario@cattaneo.de_ on 2011-08-07 23:33:55 +0200** ___ YAM 2.7-dev [OS4/PPC] (05.08.2011) Copyright (C) 2000-2011 YAM Open Source Team YAM no longer opens the write-window when you select "yes" when notified about a birthday
1.0
Birthday feature broken - **Originally by _mario@cattaneo.de_ on 2011-08-07 23:33:55 +0200** ___ YAM 2.7-dev [OS4/PPC] (05.08.2011) Copyright (C) 2000-2011 YAM Open Source Team YAM no longer opens the write-window when you select "yes" when notified about a birthday
non_test
birthday feature broken originally by mario cattaneo de on yam dev copyright c yam open source team yam no longer opens the write window when you select yes when notified about a birthday
0
145,069
11,647,361,705
IssuesEvent
2020-03-01 14:47:13
yuanshenjian/yuanshenjian.github.io
https://api.github.com/repos/yuanshenjian/yuanshenjian.github.io
opened
一枚程序员眼中的单元测试
/unit-test-in-a-programmer/ Gitalk
https://yuanshenjian.cn/unit-test-in-a-programmer/ 袁慎建, Yuan Shenjian, eXtreme Programming, 极限编程, , , 一枚程序员眼中的单元测试, , eXtreme ProgrammingTDD, 袁慎建的博客, ThoughtWorks, 首页, 博客, 袁慎建的博客, 论测试的重要性 测试能做什么 测试的价值何在 不写测试又如何 挥之不去的例外 注...
1.0
一枚程序员眼中的单元测试 - https://yuanshenjian.cn/unit-test-in-a-programmer/ 袁慎建, Yuan Shenjian, eXtreme Programming, 极限编程, , , 一枚程序员眼中的单元测试, , eXtreme ProgrammingTDD, 袁慎建的博客, ThoughtWorks, 首页, 博客, 袁慎建的博客, 论测试的重要性 测试能做什么 测试的价值何在 不写测试又如何 挥之不去的例外 注...
test
一枚程序员眼中的单元测试 袁慎建 yuan shenjian extreme programming 极限编程 一枚程序员眼中的单元测试 extreme programmingtdd 袁慎建的博客 thoughtworks 首页 博客 袁慎建的博客 论测试的重要性 测试能做什么 测试的价值何在 不写测试又如何 挥之不去的例外 注
1
256,432
22,051,929,176
IssuesEvent
2022-05-30 09:24:57
zkSNACKs/WalletWasabi
https://api.github.com/repos/zkSNACKs/WalletWasabi
closed
Music box message not shown while Send dialog is open
ww2 testing
The message should be `Waiting for closed send dialog` https://github.com/zkSNACKs/WalletWasabi/blob/master/WalletWasabi.Fluent/ViewModels/Wallets/CoinJoinStateViewModel.cs#L314 ![ssdada](https://user-images.githubusercontent.com/52379387/170746162-50fc5e3c-b9ac-4fe8-a5a9-bfc599221f0f.PNG)
1.0
Music box message not shown while Send dialog is open - The message should be `Waiting for closed send dialog` https://github.com/zkSNACKs/WalletWasabi/blob/master/WalletWasabi.Fluent/ViewModels/Wallets/CoinJoinStateViewModel.cs#L314 ![ssdada](https://user-images.githubusercontent.com/52379387/170746162-50fc5e3c-b9ac-4fe8-a5a9-bfc599221f0f.PNG)
test
music box message not shown while send dialog is open the message should be waiting for closed send dialog
1
255,459
21,926,266,661
IssuesEvent
2022-05-23 04:45:03
w3itch-crafter/w3itch-frontend
https://api.github.com/repos/w3itch-crafter/w3itch-frontend
closed
[FEAT] seo, analysis
enhancement testing
**Is your feature request related to a problem? Please describe.** - [x] 1. Add Google Search Console - [x] 2. Add Goole Google Analytics - [x] ~~3. Add Baidu Analytics~~ - [x] 4. Baidu link submit - [x] https://ziyuan.baidu.com/linksubmit/url?sitename=http%3A%2F%2Fsite%3Aw3itch.io - [x] https://ziyuan.baidu.com/linksubmit/url?sitename=http%3A%2F%2Fsite%3Atest.w3itch.io #### env ``` # Google Analytics NEXT_PUBLIC_GA_MEASUREMENT_ID= ``` Ask Google to recrawl your URLs - https://developers.google.com/search/docs/advanced/crawling/overview?hl=zh-cn - https://developers.google.com/search/docs/advanced/crawling/ask-google-to-recrawl?hl=zh-cn - https://support.google.com/webmasters/answer/9008080#domain_name_verification&zippy=%2C%E5%9F%9F%E5%90%8D%E6%8F%90%E4%BE%9B%E5%95%86 ![image](https://user-images.githubusercontent.com/24250627/166888166-fec366b2-fcf3-4d16-9a59-d14566a67061.png) ![image](https://user-images.githubusercontent.com/24250627/166887652-516b3500-e725-4743-864f-9d6c19e89af9.png) ![image](https://user-images.githubusercontent.com/24250627/166888041-2e258449-58ee-4caa-95c3-73f35106c287.png) ``` google-site-verification=ZtP6e2CJYbmDwst91q0s3IxZtWIi7Gp9_5K24X0cJv4 ``` 1. Requires a business Google account 5. Jump to `https://search.google.com/search-console/welcome` to add resources * 1. https://w3itch.io * 2. https://test.w3itch.io 6. verify **Describe the solution you'd like** A clear and concise description of what you want to happen. **Describe alternatives you've considered** A clear and concise description of any alternative solutions or features you've considered. **Additional context** Add any other context or screenshots about the feature request here.
1.0
[FEAT] seo, analysis - **Is your feature request related to a problem? Please describe.** - [x] 1. Add Google Search Console - [x] 2. Add Goole Google Analytics - [x] ~~3. Add Baidu Analytics~~ - [x] 4. Baidu link submit - [x] https://ziyuan.baidu.com/linksubmit/url?sitename=http%3A%2F%2Fsite%3Aw3itch.io - [x] https://ziyuan.baidu.com/linksubmit/url?sitename=http%3A%2F%2Fsite%3Atest.w3itch.io #### env ``` # Google Analytics NEXT_PUBLIC_GA_MEASUREMENT_ID= ``` Ask Google to recrawl your URLs - https://developers.google.com/search/docs/advanced/crawling/overview?hl=zh-cn - https://developers.google.com/search/docs/advanced/crawling/ask-google-to-recrawl?hl=zh-cn - https://support.google.com/webmasters/answer/9008080#domain_name_verification&zippy=%2C%E5%9F%9F%E5%90%8D%E6%8F%90%E4%BE%9B%E5%95%86 ![image](https://user-images.githubusercontent.com/24250627/166888166-fec366b2-fcf3-4d16-9a59-d14566a67061.png) ![image](https://user-images.githubusercontent.com/24250627/166887652-516b3500-e725-4743-864f-9d6c19e89af9.png) ![image](https://user-images.githubusercontent.com/24250627/166888041-2e258449-58ee-4caa-95c3-73f35106c287.png) ``` google-site-verification=ZtP6e2CJYbmDwst91q0s3IxZtWIi7Gp9_5K24X0cJv4 ``` 1. Requires a business Google account 5. Jump to `https://search.google.com/search-console/welcome` to add resources * 1. https://w3itch.io * 2. https://test.w3itch.io 6. verify **Describe the solution you'd like** A clear and concise description of what you want to happen. **Describe alternatives you've considered** A clear and concise description of any alternative solutions or features you've considered. **Additional context** Add any other context or screenshots about the feature request here.
test
seo analysis is your feature request related to a problem please describe add google search console add goole google analytics add baidu analytics baidu link submit env google analytics next public ga measurement id ask google to recrawl your urls google site verification requires a business google account jump to to add resources verify describe the solution you d like a clear and concise description of what you want to happen describe alternatives you ve considered a clear and concise description of any alternative solutions or features you ve considered additional context add any other context or screenshots about the feature request here
1
141,325
11,412,881,410
IssuesEvent
2020-02-01 16:05:14
dhenry-KCI/FredCo-Post-Go-Live-
https://api.github.com/repos/dhenry-KCI/FredCo-Post-Go-Live-
closed
Re- inspection fee did not generate
Test Accepted
This re-inspection fee for a 3 fire inspection did not generate... ![image](https://user-images.githubusercontent.com/47611580/72631101-c16be880-3921-11ea-98a4-c2b2d87044c2.png)
1.0
Re- inspection fee did not generate - This re-inspection fee for a 3 fire inspection did not generate... ![image](https://user-images.githubusercontent.com/47611580/72631101-c16be880-3921-11ea-98a4-c2b2d87044c2.png)
test
re inspection fee did not generate this re inspection fee for a fire inspection did not generate
1
250,702
21,328,162,575
IssuesEvent
2022-04-18 03:31:56
metaplex-foundation/metaplex
https://api.github.com/repos/metaplex-foundation/metaplex
closed
[Bug]: Probably outdated docs, unusable software
needs tests Store Front bug Stale
### Which package is this bug report for? storefront ### Issue description Following all steps in docs, several times, using different wallets (Phantom, Solflare) - locally and also deployed (GitHub Pages, Netlify, Vercel) code has always resulted in error or in unusable state: 1. Loading animation is spinning without any progress/reason after every refresh (unusable site) - first loading after yarn start, also fresh first load, and also after initialising the store - single refresh on any subpage or home page, for example on Create a new item takes just 10 minutes to stop loading, and often resulting in a browser error stopping the page anyway 2. Create NFT after store init always resulting in error - minting is unusable (whether I'm trying to do it locally or deployed online) 3. I've tried several wallets, fresh clones/forks, deployed also to github pages/Netlify/Vercel, code is just unusable. On top of that, every transaction was paid and checked on Solscan as finalized and success - however, no NFT is showing in wallet nor in storefront. You can see it for yourself, it's just loading and so slow, that it is unusable. Home page is blinking while loading with "Connect to configure store", although it was initialised and admin submitted. Deployed to Netlify > https://hungry-mayer-af82d7.netlify.app/ ![Screenshot 2022-03-12 at 19 35 10](https://user-images.githubusercontent.com/54318006/158031033-904ce847-7e16-4da7-9de7-b6b8d9bd89e3.png) ### Command ```shell git clone https://github.com/metaplex-foundation/metaplex.git cd metaplex/js yarn install && yarn bootstrap && yarn build yarn start ``` ### Relevant log output _No response_ ### Operating system MacOS 12, Chrome 99.0.4844.51, Phantom & Solflare wallet ### Priority this issue should have Medium (should be fixed soon) ### Check the Docs First - [X] I have checked the docs and it didn't solve my issue
1.0
[Bug]: Probably outdated docs, unusable software - ### Which package is this bug report for? storefront ### Issue description Following all steps in docs, several times, using different wallets (Phantom, Solflare) - locally and also deployed (GitHub Pages, Netlify, Vercel) code has always resulted in error or in unusable state: 1. Loading animation is spinning without any progress/reason after every refresh (unusable site) - first loading after yarn start, also fresh first load, and also after initialising the store - single refresh on any subpage or home page, for example on Create a new item takes just 10 minutes to stop loading, and often resulting in a browser error stopping the page anyway 2. Create NFT after store init always resulting in error - minting is unusable (whether I'm trying to do it locally or deployed online) 3. I've tried several wallets, fresh clones/forks, deployed also to github pages/Netlify/Vercel, code is just unusable. On top of that, every transaction was paid and checked on Solscan as finalized and success - however, no NFT is showing in wallet nor in storefront. You can see it for yourself, it's just loading and so slow, that it is unusable. Home page is blinking while loading with "Connect to configure store", although it was initialised and admin submitted. Deployed to Netlify > https://hungry-mayer-af82d7.netlify.app/ ![Screenshot 2022-03-12 at 19 35 10](https://user-images.githubusercontent.com/54318006/158031033-904ce847-7e16-4da7-9de7-b6b8d9bd89e3.png) ### Command ```shell git clone https://github.com/metaplex-foundation/metaplex.git cd metaplex/js yarn install && yarn bootstrap && yarn build yarn start ``` ### Relevant log output _No response_ ### Operating system MacOS 12, Chrome 99.0.4844.51, Phantom & Solflare wallet ### Priority this issue should have Medium (should be fixed soon) ### Check the Docs First - [X] I have checked the docs and it didn't solve my issue
test
probably outdated docs unusable software which package is this bug report for storefront issue description following all steps in docs several times using different wallets phantom solflare locally and also deployed github pages netlify vercel code has always resulted in error or in unusable state loading animation is spinning without any progress reason after every refresh unusable site first loading after yarn start also fresh first load and also after initialising the store single refresh on any subpage or home page for example on create a new item takes just minutes to stop loading and often resulting in a browser error stopping the page anyway create nft after store init always resulting in error minting is unusable whether i m trying to do it locally or deployed online i ve tried several wallets fresh clones forks deployed also to github pages netlify vercel code is just unusable on top of that every transaction was paid and checked on solscan as finalized and success however no nft is showing in wallet nor in storefront you can see it for yourself it s just loading and so slow that it is unusable home page is blinking while loading with connect to configure store although it was initialised and admin submitted deployed to netlify command shell git clone cd metaplex js yarn install yarn bootstrap yarn build yarn start relevant log output no response operating system macos chrome phantom solflare wallet priority this issue should have medium should be fixed soon check the docs first i have checked the docs and it didn t solve my issue
1
215,781
16,704,983,674
IssuesEvent
2021-06-09 08:55:13
bounswe/2021SpringGroup3
https://api.github.com/repos/bounswe/2021SpringGroup3
reopened
Implement Test: CommunityService
Component: Backend Component: Junit-Testing Priority: Medium Status: Completed Type: Testing
### The Unit tests for the **CommunityService** should be written. CommunityServiceTest class should be added under our /test/service package Since the Service class is still in development, you may want to wait for the new methods. _Pull request should be opened and at least two people should be assigned._ **Deadline:** 8.6.2021
2.0
Implement Test: CommunityService - ### The Unit tests for the **CommunityService** should be written. CommunityServiceTest class should be added under our /test/service package Since the Service class is still in development, you may want to wait for the new methods. _Pull request should be opened and at least two people should be assigned._ **Deadline:** 8.6.2021
test
implement test communityservice the unit tests for the communityservice should be written communityservicetest class should be added under our test service package since the service class is still in development you may want to wait for the new methods pull request should be opened and at least two people should be assigned deadline
1
186,402
14,394,660,561
IssuesEvent
2020-12-03 01:49:27
github-vet/rangeclosure-findings
https://api.github.com/repos/github-vet/rangeclosure-findings
closed
itsivareddy/terrafrom-Oci: oci/core_volume_backup_policy_test.go; 14 LoC
fresh small test
Found a possible issue in [itsivareddy/terrafrom-Oci](https://www.github.com/itsivareddy/terrafrom-Oci) at [oci/core_volume_backup_policy_test.go](https://github.com/itsivareddy/terrafrom-Oci/blob/075608a9e201ee0e32484da68d5ba5370dfde1be/oci/core_volume_backup_policy_test.go#L257-L270) The below snippet of Go code triggered static analysis which searches for goroutines and/or defer statements which capture loop variables. [Click here to see the code in its original context.](https://github.com/itsivareddy/terrafrom-Oci/blob/075608a9e201ee0e32484da68d5ba5370dfde1be/oci/core_volume_backup_policy_test.go#L257-L270) <details> <summary>Click here to show the 14 line(s) of Go which triggered the analyzer.</summary> ```go for _, volumeBackupPolicyId := range volumeBackupPolicyIds { if ok := SweeperDefaultResourceId[volumeBackupPolicyId]; !ok { deleteVolumeBackupPolicyRequest := oci_core.DeleteVolumeBackupPolicyRequest{} deleteVolumeBackupPolicyRequest.PolicyId = &volumeBackupPolicyId deleteVolumeBackupPolicyRequest.RequestMetadata.RetryPolicy = getRetryPolicy(true, "core") _, error := blockstorageClient.DeleteVolumeBackupPolicy(context.Background(), deleteVolumeBackupPolicyRequest) if error != nil { fmt.Printf("Error deleting VolumeBackupPolicy %s %s, It is possible that the resource is already deleted. Please verify manually \n", volumeBackupPolicyId, error) continue } } } ``` Below is the message reported by the analyzer for this snippet of code. Beware that the analyzer only reports the first issue it finds, so please do not limit your consideration to the contents of the below message. > reference to volumeBackupPolicyId is reassigned at line 261 </details> Leave a reaction on this issue to contribute to the project by classifying this instance as a **Bug** :-1:, **Mitigated** :+1:, or **Desirable Behavior** :rocket: See the descriptions of the classifications [here](https://github.com/github-vet/rangeclosure-findings#how-can-i-help) for more information. commit ID: 075608a9e201ee0e32484da68d5ba5370dfde1be
1.0
itsivareddy/terrafrom-Oci: oci/core_volume_backup_policy_test.go; 14 LoC - Found a possible issue in [itsivareddy/terrafrom-Oci](https://www.github.com/itsivareddy/terrafrom-Oci) at [oci/core_volume_backup_policy_test.go](https://github.com/itsivareddy/terrafrom-Oci/blob/075608a9e201ee0e32484da68d5ba5370dfde1be/oci/core_volume_backup_policy_test.go#L257-L270) The below snippet of Go code triggered static analysis which searches for goroutines and/or defer statements which capture loop variables. [Click here to see the code in its original context.](https://github.com/itsivareddy/terrafrom-Oci/blob/075608a9e201ee0e32484da68d5ba5370dfde1be/oci/core_volume_backup_policy_test.go#L257-L270) <details> <summary>Click here to show the 14 line(s) of Go which triggered the analyzer.</summary> ```go for _, volumeBackupPolicyId := range volumeBackupPolicyIds { if ok := SweeperDefaultResourceId[volumeBackupPolicyId]; !ok { deleteVolumeBackupPolicyRequest := oci_core.DeleteVolumeBackupPolicyRequest{} deleteVolumeBackupPolicyRequest.PolicyId = &volumeBackupPolicyId deleteVolumeBackupPolicyRequest.RequestMetadata.RetryPolicy = getRetryPolicy(true, "core") _, error := blockstorageClient.DeleteVolumeBackupPolicy(context.Background(), deleteVolumeBackupPolicyRequest) if error != nil { fmt.Printf("Error deleting VolumeBackupPolicy %s %s, It is possible that the resource is already deleted. Please verify manually \n", volumeBackupPolicyId, error) continue } } } ``` Below is the message reported by the analyzer for this snippet of code. Beware that the analyzer only reports the first issue it finds, so please do not limit your consideration to the contents of the below message. > reference to volumeBackupPolicyId is reassigned at line 261 </details> Leave a reaction on this issue to contribute to the project by classifying this instance as a **Bug** :-1:, **Mitigated** :+1:, or **Desirable Behavior** :rocket: See the descriptions of the classifications [here](https://github.com/github-vet/rangeclosure-findings#how-can-i-help) for more information. commit ID: 075608a9e201ee0e32484da68d5ba5370dfde1be
test
itsivareddy terrafrom oci oci core volume backup policy test go loc found a possible issue in at the below snippet of go code triggered static analysis which searches for goroutines and or defer statements which capture loop variables click here to show the line s of go which triggered the analyzer go for volumebackuppolicyid range volumebackuppolicyids if ok sweeperdefaultresourceid ok deletevolumebackuppolicyrequest oci core deletevolumebackuppolicyrequest deletevolumebackuppolicyrequest policyid volumebackuppolicyid deletevolumebackuppolicyrequest requestmetadata retrypolicy getretrypolicy true core error blockstorageclient deletevolumebackuppolicy context background deletevolumebackuppolicyrequest if error nil fmt printf error deleting volumebackuppolicy s s it is possible that the resource is already deleted please verify manually n volumebackuppolicyid error continue below is the message reported by the analyzer for this snippet of code beware that the analyzer only reports the first issue it finds so please do not limit your consideration to the contents of the below message reference to volumebackuppolicyid is reassigned at line leave a reaction on this issue to contribute to the project by classifying this instance as a bug mitigated or desirable behavior rocket see the descriptions of the classifications for more information commit id
1
825,917
31,478,229,829
IssuesEvent
2023-08-30 12:16:51
yugabyte/yugabyte-db
https://api.github.com/repos/yugabyte/yugabyte-db
closed
[CDCSDK] Data loss with tablet splitting on 2.18.2.0 (after restarting connector following null pointer exception)
kind/bug area/cdcsdk priority/highest
Jira Link: [DB-7247](https://yugabyte.atlassian.net/browse/DB-7247) ### Description http://stress.dev.yugabyte.com/stress_test/b69da62a-9bdd-48d8-840b-2aad756a48b1 ![Profile (1)](https://github.com/yugabyte/yugabyte-db/assets/109518123/9e4b65f7-3051-4cac-89cd-6b059ecbcf80) We saw this in connector log: ``` 290163 java.lang.NullPointerException 290164 at io.debezium.connector.yugabytedb.YugabyteDBStreamingChangeEventSource.getChanges2(YugabyteDBStreamingChangeEventSource.java:323) 290165 at io.debezium.connector.yugabytedb.YugabyteDBStreamingChangeEventSource.execute(YugabyteDBStreamingChangeEventSource.java:149) 290166 at io.debezium.connector.yugabytedb.YugabyteDBStreamingChangeEventSource.execute(YugabyteDBStreamingChangeEventSource.java:47) 290167 at io.debezium.pipeline.ChangeEventSourceCoordinator.streamEvents(ChangeEventSourceCoordinator.java:174) 290168 at io.debezium.connector.yugabytedb.YugabyteDBChangeEventSourceCoordinator.executeChangeEventSources(YugabyteDBChangeEventSourceCoordinator.java:144) 290169 at io.debezium.pipeline.ChangeEventSourceCoordinator.lambda$start$0(ChangeEventSourceCoordinator.java:109) 290170 at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:515) 290171 at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) 290172 at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128) 290173 at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) 290174 at java.base/java.lang.Thread.run(Thread.java:829) ``` Which @vaibhav-yb pointed to https://github.com/yugabyte/yugabyte-db/issues/15603 But we are also doing connector restart, after that, which should resolve is what said. But after that, we see all tasks number in log, but see its stuck and caused data loss. ### Source connector version 1.9.5.y.29 ### Connector configuration ``` add connector connector_name='ybconnector_cdc_df04d4_table_1' stream_id='a8366a9136df4a96bd6e073e7c7b480b' db_name='cdc_df04d4' connector_host='172.151.28.102' table_list=['table_1'] {'name': 'ybconnector_cdc_df04d4_table_1', 'config': {'connector.class': 'io.debezium.connector.yugabytedb.YugabyteDBConnector', 'database.hostname': '172.151.26.238', 'database.master.addresses': '172.151.26.238:7100,172.151.18.179:7100,172.151.26.171:7100', 'database.port': 5433, 'database.masterhost': '172.151.26.238', 'database.masterport': '7100', 'database.user': 'yugabyte', 'database.password': 'yugabyte', 'database.dbname': 'cdc_df04d4', 'database.server.name': 'db_cdc', 'database.streamid': 'a8366a9136df4a96bd6e073e7c7b480b', 'snapshot.mode': 'never', 'admin.operation.timeout.ms': 600000, 'socket.read.timeout.ms': 600000, 'max.connector.retries': '10', 'operation.timeout.ms': 600000, 'topic.creation.default.compression.type': 'lz4', 'topic.creation.default.cleanup.policy': 'delete', 'topic.creation.default.partitions': 2, 'topic.creation.default.replication.factor': '1', 'tasks.max': '5', 'table.include.list': 'public.table_1'}} ``` ### YugabyteDB version 2.18.2.0-b53 ### Warning: Please confirm that this issue does not contain any sensitive information - [X] I confirm this issue does not contain any sensitive information. [DB-7247]: https://yugabyte.atlassian.net/browse/DB-7247?atlOrigin=eyJpIjoiNWRkNTljNzYxNjVmNDY3MDlhMDU5Y2ZhYzA5YTRkZjUiLCJwIjoiZ2l0aHViLWNvbS1KU1cifQ
1.0
[CDCSDK] Data loss with tablet splitting on 2.18.2.0 (after restarting connector following null pointer exception) - Jira Link: [DB-7247](https://yugabyte.atlassian.net/browse/DB-7247) ### Description http://stress.dev.yugabyte.com/stress_test/b69da62a-9bdd-48d8-840b-2aad756a48b1 ![Profile (1)](https://github.com/yugabyte/yugabyte-db/assets/109518123/9e4b65f7-3051-4cac-89cd-6b059ecbcf80) We saw this in connector log: ``` 290163 java.lang.NullPointerException 290164 at io.debezium.connector.yugabytedb.YugabyteDBStreamingChangeEventSource.getChanges2(YugabyteDBStreamingChangeEventSource.java:323) 290165 at io.debezium.connector.yugabytedb.YugabyteDBStreamingChangeEventSource.execute(YugabyteDBStreamingChangeEventSource.java:149) 290166 at io.debezium.connector.yugabytedb.YugabyteDBStreamingChangeEventSource.execute(YugabyteDBStreamingChangeEventSource.java:47) 290167 at io.debezium.pipeline.ChangeEventSourceCoordinator.streamEvents(ChangeEventSourceCoordinator.java:174) 290168 at io.debezium.connector.yugabytedb.YugabyteDBChangeEventSourceCoordinator.executeChangeEventSources(YugabyteDBChangeEventSourceCoordinator.java:144) 290169 at io.debezium.pipeline.ChangeEventSourceCoordinator.lambda$start$0(ChangeEventSourceCoordinator.java:109) 290170 at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:515) 290171 at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) 290172 at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128) 290173 at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) 290174 at java.base/java.lang.Thread.run(Thread.java:829) ``` Which @vaibhav-yb pointed to https://github.com/yugabyte/yugabyte-db/issues/15603 But we are also doing connector restart, after that, which should resolve is what said. But after that, we see all tasks number in log, but see its stuck and caused data loss. ### Source connector version 1.9.5.y.29 ### Connector configuration ``` add connector connector_name='ybconnector_cdc_df04d4_table_1' stream_id='a8366a9136df4a96bd6e073e7c7b480b' db_name='cdc_df04d4' connector_host='172.151.28.102' table_list=['table_1'] {'name': 'ybconnector_cdc_df04d4_table_1', 'config': {'connector.class': 'io.debezium.connector.yugabytedb.YugabyteDBConnector', 'database.hostname': '172.151.26.238', 'database.master.addresses': '172.151.26.238:7100,172.151.18.179:7100,172.151.26.171:7100', 'database.port': 5433, 'database.masterhost': '172.151.26.238', 'database.masterport': '7100', 'database.user': 'yugabyte', 'database.password': 'yugabyte', 'database.dbname': 'cdc_df04d4', 'database.server.name': 'db_cdc', 'database.streamid': 'a8366a9136df4a96bd6e073e7c7b480b', 'snapshot.mode': 'never', 'admin.operation.timeout.ms': 600000, 'socket.read.timeout.ms': 600000, 'max.connector.retries': '10', 'operation.timeout.ms': 600000, 'topic.creation.default.compression.type': 'lz4', 'topic.creation.default.cleanup.policy': 'delete', 'topic.creation.default.partitions': 2, 'topic.creation.default.replication.factor': '1', 'tasks.max': '5', 'table.include.list': 'public.table_1'}} ``` ### YugabyteDB version 2.18.2.0-b53 ### Warning: Please confirm that this issue does not contain any sensitive information - [X] I confirm this issue does not contain any sensitive information. [DB-7247]: https://yugabyte.atlassian.net/browse/DB-7247?atlOrigin=eyJpIjoiNWRkNTljNzYxNjVmNDY3MDlhMDU5Y2ZhYzA5YTRkZjUiLCJwIjoiZ2l0aHViLWNvbS1KU1cifQ
non_test
data loss with tablet splitting on after restarting connector following null pointer exception jira link description we saw this in connector log java lang nullpointerexception at io debezium connector yugabytedb yugabytedbstreamingchangeeventsource yugabytedbstreamingchangeeventsource java at io debezium connector yugabytedb yugabytedbstreamingchangeeventsource execute yugabytedbstreamingchangeeventsource java at io debezium connector yugabytedb yugabytedbstreamingchangeeventsource execute yugabytedbstreamingchangeeventsource java at io debezium pipeline changeeventsourcecoordinator streamevents changeeventsourcecoordinator java at io debezium connector yugabytedb yugabytedbchangeeventsourcecoordinator executechangeeventsources yugabytedbchangeeventsourcecoordinator java at io debezium pipeline changeeventsourcecoordinator lambda start changeeventsourcecoordinator java at java base java util concurrent executors runnableadapter call executors java at java base java util concurrent futuretask run futuretask java at java base java util concurrent threadpoolexecutor runworker threadpoolexecutor java at java base java util concurrent threadpoolexecutor worker run threadpoolexecutor java at java base java lang thread run thread java which vaibhav yb pointed to but we are also doing connector restart after that which should resolve is what said but after that we see all tasks number in log but see its stuck and caused data loss source connector version y connector configuration add connector connector name ybconnector cdc table stream id db name cdc connector host table list name ybconnector cdc table config connector class io debezium connector yugabytedb yugabytedbconnector database hostname database master addresses database port database masterhost database masterport database user yugabyte database password yugabyte database dbname cdc database server name db cdc database streamid snapshot mode never admin operation timeout ms socket read timeout ms max connector retries operation timeout ms topic creation default compression type topic creation default cleanup policy delete topic creation default partitions topic creation default replication factor tasks max table include list public table yugabytedb version warning please confirm that this issue does not contain any sensitive information i confirm this issue does not contain any sensitive information
0
164,529
12,809,064,305
IssuesEvent
2020-07-03 14:51:05
aliasrobotics/RVD
https://api.github.com/repos/aliasrobotics/RVD
closed
RVD#3257: CWE-134 (format), If format strings can be influenced by an attacker, they can be exploi... @ F767ZI-v1/px4nucleo_spi.c:79
CWE-134 bug components software flawfinder flawfinder_level_4 mitigated robot component: PX4 static analysis testing triage version: v1.7.0
```yaml id: 3257 title: 'RVD#3257: CWE-134 (format), If format strings can be influenced by an attacker, they can be exploi... @ F767ZI-v1/px4nucleo_spi.c:79' type: bug description: If format strings can be influenced by an attacker, they can be exploited (CWE-134). Use a constant for the format specification. . Happening @ ...F767ZI-v1/px4nucleo_spi.c:79 cwe: - CWE-134 cve: None keywords: - flawfinder - flawfinder_level_4 - static analysis - testing - triage - CWE-134 - bug - 'version: v1.7.0' - 'robot component: PX4' - components software system: ./Firmware/src/drivers/boards/px4nucleoF767ZI-v1/px4nucleo_spi.c:79:21 vendor: null severity: rvss-score: 0 rvss-vector: '' severity-description: '' cvss-score: 0 cvss-vector: '' links: - https://github.com/aliasrobotics/RVD/issues/3257 flaw: phase: testing specificity: subject-specific architectural-location: application-specific application: N/A subsystem: N/A package: N/A languages: None date-detected: 2020-06-29 (20:52) detected-by: Alias Robotics detected-by-method: testing static date-reported: 2020-06-29 (20:52) reported-by: Alias Robotics reported-by-relationship: automatic issue: https://github.com/aliasrobotics/RVD/issues/3257 reproducibility: always trace: '(context) # define message printf' reproduction: See artifacts below (if available) reproduction-image: gitlab.com/aliasrobotics/offensive/alurity/pipelines/active/pipeline_px4/-/jobs/616402716/artifacts/download exploitation: description: '' exploitation-image: '' exploitation-vector: '' exploitation-recipe: '' mitigation: description: Use a constant for the format specification pull-request: '' date-mitigation: '' ```
1.0
RVD#3257: CWE-134 (format), If format strings can be influenced by an attacker, they can be exploi... @ F767ZI-v1/px4nucleo_spi.c:79 - ```yaml id: 3257 title: 'RVD#3257: CWE-134 (format), If format strings can be influenced by an attacker, they can be exploi... @ F767ZI-v1/px4nucleo_spi.c:79' type: bug description: If format strings can be influenced by an attacker, they can be exploited (CWE-134). Use a constant for the format specification. . Happening @ ...F767ZI-v1/px4nucleo_spi.c:79 cwe: - CWE-134 cve: None keywords: - flawfinder - flawfinder_level_4 - static analysis - testing - triage - CWE-134 - bug - 'version: v1.7.0' - 'robot component: PX4' - components software system: ./Firmware/src/drivers/boards/px4nucleoF767ZI-v1/px4nucleo_spi.c:79:21 vendor: null severity: rvss-score: 0 rvss-vector: '' severity-description: '' cvss-score: 0 cvss-vector: '' links: - https://github.com/aliasrobotics/RVD/issues/3257 flaw: phase: testing specificity: subject-specific architectural-location: application-specific application: N/A subsystem: N/A package: N/A languages: None date-detected: 2020-06-29 (20:52) detected-by: Alias Robotics detected-by-method: testing static date-reported: 2020-06-29 (20:52) reported-by: Alias Robotics reported-by-relationship: automatic issue: https://github.com/aliasrobotics/RVD/issues/3257 reproducibility: always trace: '(context) # define message printf' reproduction: See artifacts below (if available) reproduction-image: gitlab.com/aliasrobotics/offensive/alurity/pipelines/active/pipeline_px4/-/jobs/616402716/artifacts/download exploitation: description: '' exploitation-image: '' exploitation-vector: '' exploitation-recipe: '' mitigation: description: Use a constant for the format specification pull-request: '' date-mitigation: '' ```
test
rvd cwe format if format strings can be influenced by an attacker they can be exploi spi c yaml id title rvd cwe format if format strings can be influenced by an attacker they can be exploi spi c type bug description if format strings can be influenced by an attacker they can be exploited cwe use a constant for the format specification happening spi c cwe cwe cve none keywords flawfinder flawfinder level static analysis testing triage cwe bug version robot component components software system firmware src drivers boards spi c vendor null severity rvss score rvss vector severity description cvss score cvss vector links flaw phase testing specificity subject specific architectural location application specific application n a subsystem n a package n a languages none date detected detected by alias robotics detected by method testing static date reported reported by alias robotics reported by relationship automatic issue reproducibility always trace context define message printf reproduction see artifacts below if available reproduction image gitlab com aliasrobotics offensive alurity pipelines active pipeline jobs artifacts download exploitation description exploitation image exploitation vector exploitation recipe mitigation description use a constant for the format specification pull request date mitigation
1
67,976
8,204,207,837
IssuesEvent
2018-09-03 05:06:53
brave/browser-laptop
https://api.github.com/repos/brave/browser-laptop
closed
Default fallback icon needs refinement
addressed-with-brave-core design wontfix
<!-- Have you searched for similar issues? We have received a lot of feedback and bug reports that we have closed as duplicates. Before submitting this issue, please visit our community site for common ones: https://community.brave.com/c/common-issues --> ### Description Default fallback icon needs refinement ### Steps to Reproduce 1. Based on conversation from https://bravesoftware.slack.com/archives/C07HD31EZ/p1529336218000679 2. Also reported on community https://community.brave.com/t/whats-with-the-saturn-iconography-since-the-last-update/26465 3. **Actual result:** ![image](https://user-images.githubusercontent.com/17010094/42111644-1884d060-7bb3-11e8-847b-f812b48ac714.png) **Reproducible on current live release:** Yes ### Additional Information <!-- Any additional information, related issues, extra QA steps, configuration or data that might be necessary to reproduce the issue. -->
1.0
Default fallback icon needs refinement - <!-- Have you searched for similar issues? We have received a lot of feedback and bug reports that we have closed as duplicates. Before submitting this issue, please visit our community site for common ones: https://community.brave.com/c/common-issues --> ### Description Default fallback icon needs refinement ### Steps to Reproduce 1. Based on conversation from https://bravesoftware.slack.com/archives/C07HD31EZ/p1529336218000679 2. Also reported on community https://community.brave.com/t/whats-with-the-saturn-iconography-since-the-last-update/26465 3. **Actual result:** ![image](https://user-images.githubusercontent.com/17010094/42111644-1884d060-7bb3-11e8-847b-f812b48ac714.png) **Reproducible on current live release:** Yes ### Additional Information <!-- Any additional information, related issues, extra QA steps, configuration or data that might be necessary to reproduce the issue. -->
non_test
default fallback icon needs refinement have you searched for similar issues we have received a lot of feedback and bug reports that we have closed as duplicates before submitting this issue please visit our community site for common ones description default fallback icon needs refinement steps to reproduce based on conversation from also reported on community actual result reproducible on current live release yes additional information any additional information related issues extra qa steps configuration or data that might be necessary to reproduce the issue
0
236,212
19,521,896,812
IssuesEvent
2021-12-29 20:17:21
ita-social-projects/EventsExpress
https://api.github.com/repos/ita-social-projects/EventsExpress
opened
Verify that the user cannot select the same category more than one time
test case
**Date Time** 12-29-2021 10:09 PM **Priority** Medium **Description** The user can select favorite category only once. The system should not allow the user to select the same category more than one time. **Pre-requisites** Steps to be fulfilled before test: 1. User is logged into account 2. 'My profile' page is opened **Test Cases** | S# | Action | Test Data | Expected Result | Actual Result | P/F | Automated | |:-----------:|:-----------:|:-----------:|:---------------:|:-------------:|:-----------:|:-----------:| | 1 | Click on 'Favorite categories' option | <br> | 'Favorite categories' field is shown | <br> | <br> | <br> | | 2 | Click on dropdown field to select 'Favorite categories' | <br> | Dropdown list is opened | <br> | <br> | <br> | | 3 | Choose any category | for example 'football' | Chosen category is selected | <br> | <br> | <br> | | 4 | Click 'Save' | <br> | Chosen category is selected and added to the list of favorite categories. Message 'Favorite categories are updated' | <br> | <br> | <br> | | 5 | Choose the same category that was selected during the step 3 | for example 'football' | Chosen category is absent in the dropdown list. User cannot select the same category again. | <br> | <br> | <br> | **Environment:** OS: Windows 10 Pro Browser: Chrome Version: 96.0.4664.45 **Additional context** User story links.: "User story #993 " Type ("Functional").
1.0
Verify that the user cannot select the same category more than one time - **Date Time** 12-29-2021 10:09 PM **Priority** Medium **Description** The user can select favorite category only once. The system should not allow the user to select the same category more than one time. **Pre-requisites** Steps to be fulfilled before test: 1. User is logged into account 2. 'My profile' page is opened **Test Cases** | S# | Action | Test Data | Expected Result | Actual Result | P/F | Automated | |:-----------:|:-----------:|:-----------:|:---------------:|:-------------:|:-----------:|:-----------:| | 1 | Click on 'Favorite categories' option | <br> | 'Favorite categories' field is shown | <br> | <br> | <br> | | 2 | Click on dropdown field to select 'Favorite categories' | <br> | Dropdown list is opened | <br> | <br> | <br> | | 3 | Choose any category | for example 'football' | Chosen category is selected | <br> | <br> | <br> | | 4 | Click 'Save' | <br> | Chosen category is selected and added to the list of favorite categories. Message 'Favorite categories are updated' | <br> | <br> | <br> | | 5 | Choose the same category that was selected during the step 3 | for example 'football' | Chosen category is absent in the dropdown list. User cannot select the same category again. | <br> | <br> | <br> | **Environment:** OS: Windows 10 Pro Browser: Chrome Version: 96.0.4664.45 **Additional context** User story links.: "User story #993 " Type ("Functional").
test
verify that the user cannot select the same category more than one time date time pm priority medium description the user can select favorite category only once the system should not allow the user to select the same category more than one time pre requisites steps to be fulfilled before test user is logged into account my profile page is opened test cases s action test data expected result actual result p f automated click on favorite categories option favorite categories field is shown click on dropdown field to select favorite categories dropdown list is opened choose any category for example football chosen category is selected click save chosen category is selected and added to the list of favorite categories message favorite categories are updated choose the same category that was selected during the step for example football chosen category is absent in the dropdown list user cannot select the same category again environment os windows pro browser chrome version additional context user story links user story type functional
1
30,204
4,567,532,804
IssuesEvent
2016-09-15 11:30:58
01org/cc-oci-runtime
https://api.github.com/repos/01org/cc-oci-runtime
opened
Create a suitable bundle for functional tests
domain:tests P1 Tackle first
RIght now we need to create a test bundle by hand for functional tests and provide its path to the configure script. We should create it as part of "make check" instead so we can: - automate its creation - have everyone testing with the same environment - control what goes in there for special testing (we could have binaries in that bundle we need to run to provide a testable output), eg. test signal forwarding to a process inside the VM.
1.0
Create a suitable bundle for functional tests - RIght now we need to create a test bundle by hand for functional tests and provide its path to the configure script. We should create it as part of "make check" instead so we can: - automate its creation - have everyone testing with the same environment - control what goes in there for special testing (we could have binaries in that bundle we need to run to provide a testable output), eg. test signal forwarding to a process inside the VM.
test
create a suitable bundle for functional tests right now we need to create a test bundle by hand for functional tests and provide its path to the configure script we should create it as part of make check instead so we can automate its creation have everyone testing with the same environment control what goes in there for special testing we could have binaries in that bundle we need to run to provide a testable output eg test signal forwarding to a process inside the vm
1
318,007
27,277,601,996
IssuesEvent
2023-02-23 07:19:28
prgrms-web-devcourse/Team-Kkini-Mukvengers-BE
https://api.github.com/repos/prgrms-web-devcourse/Team-Kkini-Mukvengers-BE
closed
가게 CR 기능 API 구현
🚀 Feat ✅ Test
### 🚀 목적 - 가게 도메인 기본 CR API 구현 ### 🔗 작업 - 가게 저장 기능 - 가게 조회 기능(맵 api 를 통해 얻은 가게 pk로) ### ✅ 완료조건 - 테스트 작성 - API Document 작성
1.0
가게 CR 기능 API 구현 - ### 🚀 목적 - 가게 도메인 기본 CR API 구현 ### 🔗 작업 - 가게 저장 기능 - 가게 조회 기능(맵 api 를 통해 얻은 가게 pk로) ### ✅ 완료조건 - 테스트 작성 - API Document 작성
test
가게 cr 기능 api 구현 🚀 목적 가게 도메인 기본 cr api 구현 🔗 작업 가게 저장 기능 가게 조회 기능 맵 api 를 통해 얻은 가게 pk로 ✅ 완료조건 테스트 작성 api document 작성
1
50,736
12,550,293,528
IssuesEvent
2020-06-06 10:34:14
Dalgona/Serum
https://api.github.com/repos/Dalgona/Serum
closed
relocate "posts" to create a different URL
area:site-builder priority:mid type:enhancement v1
I want to look and sound smart when writing blog posts, and for that i would like my "posts" to show up under the URI `/thoughts/` This could be done with a configuration option in `serum.exs` which would assign "posts" a different name. (Whether the directory on disk needs to change for this or not, I'm not sure. It might makes things easier because more consistent 🤷‍♀️️)
1.0
relocate "posts" to create a different URL - I want to look and sound smart when writing blog posts, and for that i would like my "posts" to show up under the URI `/thoughts/` This could be done with a configuration option in `serum.exs` which would assign "posts" a different name. (Whether the directory on disk needs to change for this or not, I'm not sure. It might makes things easier because more consistent 🤷‍♀️️)
non_test
relocate posts to create a different url i want to look and sound smart when writing blog posts and for that i would like my posts to show up under the uri thoughts this could be done with a configuration option in serum exs which would assign posts a different name whether the directory on disk needs to change for this or not i m not sure it might makes things easier because more consistent 🤷‍♀️️
0
779,550
27,357,533,928
IssuesEvent
2023-02-27 13:52:24
gamefreedomgit/Maelstrom
https://api.github.com/repos/gamefreedomgit/Maelstrom
opened
[Moved from Discord] Smoke bomb delay between animation and active effect
Class: Rogue Core Priority: High Status: Confirmed Bug Report from Discord
ivarx OP — Today at 11:55 Description: : Smoke bomb effect is delayed a lot: Any spell from out side smoke bomb can reach the target within the smoke bomb one second or more after the effect has already finished. How to reproduce it:: As you can see in the two videos below the warrior is able to charge a rogue even if smoke bomb animation has already finished. You can also noticed in the left of my character, there is an addon that process the combat log and shows the smoke bomb aura. Once this addon manage to show it this mean that the aura is already in place (because of the processing time required). This issue is not related to any lag because i am playing with 15 ms (i live in france near to OVH). If needed, you can replay the two video below with *0.25 speed to see exactly what's happening https://www.twitch.tv/videos/1750617976 https://www.twitch.tv/videos/1750617974 How it should work:: Creates a cloud of thick smoke in an 8 yard radius around the Rogue for 5sec. Enemies are unable to target into or out of the smoke cloud. The effect of the smoke bomb should be applied once the aura animation is done and should not be delayed TLDR - Upon cast of Smoke bomb their should be no delay between the animation start and the debuff being applied.
1.0
[Moved from Discord] Smoke bomb delay between animation and active effect - ivarx OP — Today at 11:55 Description: : Smoke bomb effect is delayed a lot: Any spell from out side smoke bomb can reach the target within the smoke bomb one second or more after the effect has already finished. How to reproduce it:: As you can see in the two videos below the warrior is able to charge a rogue even if smoke bomb animation has already finished. You can also noticed in the left of my character, there is an addon that process the combat log and shows the smoke bomb aura. Once this addon manage to show it this mean that the aura is already in place (because of the processing time required). This issue is not related to any lag because i am playing with 15 ms (i live in france near to OVH). If needed, you can replay the two video below with *0.25 speed to see exactly what's happening https://www.twitch.tv/videos/1750617976 https://www.twitch.tv/videos/1750617974 How it should work:: Creates a cloud of thick smoke in an 8 yard radius around the Rogue for 5sec. Enemies are unable to target into or out of the smoke cloud. The effect of the smoke bomb should be applied once the aura animation is done and should not be delayed TLDR - Upon cast of Smoke bomb their should be no delay between the animation start and the debuff being applied.
non_test
smoke bomb delay between animation and active effect ivarx op — today at description smoke bomb effect is delayed a lot any spell from out side smoke bomb can reach the target within the smoke bomb one second or more after the effect has already finished how to reproduce it as you can see in the two videos below the warrior is able to charge a rogue even if smoke bomb animation has already finished you can also noticed in the left of my character there is an addon that process the combat log and shows the smoke bomb aura once this addon manage to show it this mean that the aura is already in place because of the processing time required this issue is not related to any lag because i am playing with ms i live in france near to ovh if needed you can replay the two video below with speed to see exactly what s happening how it should work creates a cloud of thick smoke in an yard radius around the rogue for enemies are unable to target into or out of the smoke cloud the effect of the smoke bomb should be applied once the aura animation is done and should not be delayed tldr upon cast of smoke bomb their should be no delay between the animation start and the debuff being applied
0
190,124
15,218,205,554
IssuesEvent
2021-02-17 17:31:34
GoogleContainerTools/jib-extensions
https://api.github.com/repos/GoogleContainerTools/jib-extensions
reopened
the generated jar file has wrong name xxx-unspecified-runner.jar
kind/bug kind/documentation
it seems the quarkus plugin generate wrong filename. ie: `xxx-unspecified-runner.jar` in stead of `xxx-runner.jar` what i should have to change to generate good filename? this is the output of a build: ``` ./gradlew xxx:jib > Task :xxx:quarkusGenerateCode preparing quarkus application > Task :xxx:jib FAILED Running extension: com.google.cloud.tools.jib.gradle.extension.quarkus.JibQuarkusExtension Running Quarkus Jib extension FAILURE: Build failed with an exception. * What went wrong: Execution failed for task ':xxx:jib'. > error running extension 'com.google.cloud.tools.jib.gradle.extension.quarkus.JibQuarkusExtension': /home/lfarkas/work/test/java/xxx/build/xxx-runner.jar doesn't exist; did you run the Qaurkus Gradle plugin ('quarkusBuild' task)? ``` anyway if i rename `xxx-unspecified-runner.jar` to `xxx-runner.jar` then the result is working.
1.0
the generated jar file has wrong name xxx-unspecified-runner.jar - it seems the quarkus plugin generate wrong filename. ie: `xxx-unspecified-runner.jar` in stead of `xxx-runner.jar` what i should have to change to generate good filename? this is the output of a build: ``` ./gradlew xxx:jib > Task :xxx:quarkusGenerateCode preparing quarkus application > Task :xxx:jib FAILED Running extension: com.google.cloud.tools.jib.gradle.extension.quarkus.JibQuarkusExtension Running Quarkus Jib extension FAILURE: Build failed with an exception. * What went wrong: Execution failed for task ':xxx:jib'. > error running extension 'com.google.cloud.tools.jib.gradle.extension.quarkus.JibQuarkusExtension': /home/lfarkas/work/test/java/xxx/build/xxx-runner.jar doesn't exist; did you run the Qaurkus Gradle plugin ('quarkusBuild' task)? ``` anyway if i rename `xxx-unspecified-runner.jar` to `xxx-runner.jar` then the result is working.
non_test
the generated jar file has wrong name xxx unspecified runner jar it seems the quarkus plugin generate wrong filename ie xxx unspecified runner jar in stead of xxx runner jar what i should have to change to generate good filename this is the output of a build gradlew xxx jib task xxx quarkusgeneratecode preparing quarkus application task xxx jib failed running extension com google cloud tools jib gradle extension quarkus jibquarkusextension running quarkus jib extension failure build failed with an exception what went wrong execution failed for task xxx jib error running extension com google cloud tools jib gradle extension quarkus jibquarkusextension home lfarkas work test java xxx build xxx runner jar doesn t exist did you run the qaurkus gradle plugin quarkusbuild task anyway if i rename xxx unspecified runner jar to xxx runner jar then the result is working
0
463,265
13,262,317,349
IssuesEvent
2020-08-20 21:32:06
Arzov/umt-pwa
https://api.github.com/repos/Arzov/umt-pwa
closed
Componente Geoloc
frontend low priority
## Descripción El componente Geoloc es el componente donde se le pide al usuario el permiso para obtener su ubicación, si el usuario denega el permiso no podrá utilizar la app y tendrá que revocar el permiso desde su navegador (Safari o Chrome). ## Lista de tareas - [ ] Desarrollo del código. - [ ] Generar gráficas CSS para la vista. - [ ] Instrucciones en caso de denegar permiso.
1.0
Componente Geoloc - ## Descripción El componente Geoloc es el componente donde se le pide al usuario el permiso para obtener su ubicación, si el usuario denega el permiso no podrá utilizar la app y tendrá que revocar el permiso desde su navegador (Safari o Chrome). ## Lista de tareas - [ ] Desarrollo del código. - [ ] Generar gráficas CSS para la vista. - [ ] Instrucciones en caso de denegar permiso.
non_test
componente geoloc descripción el componente geoloc es el componente donde se le pide al usuario el permiso para obtener su ubicación si el usuario denega el permiso no podrá utilizar la app y tendrá que revocar el permiso desde su navegador safari o chrome lista de tareas desarrollo del código generar gráficas css para la vista instrucciones en caso de denegar permiso
0
36,869
18,021,345,840
IssuesEvent
2021-09-16 19:52:51
TheBv/logstf-parser
https://api.github.com/repos/TheBv/logstf-parser
closed
Improve performance by splitting regex into groups
performance
Currently we're doing close to 40 regex checks for each line in the file. One could easily improve upon that by grouping certain regex checks into groups and iterating through each of the groups if and only if a certain condition is met. E.g one could create a group for events that include 'triggered "xxx" against' and make sure that those only get run when the previously mentioned syntax is found in the line. One could do similar things for 'World triggered "xxx"' Additionally with grouping, one could not continue iterating through the group once a regex match has been made.
True
Improve performance by splitting regex into groups - Currently we're doing close to 40 regex checks for each line in the file. One could easily improve upon that by grouping certain regex checks into groups and iterating through each of the groups if and only if a certain condition is met. E.g one could create a group for events that include 'triggered "xxx" against' and make sure that those only get run when the previously mentioned syntax is found in the line. One could do similar things for 'World triggered "xxx"' Additionally with grouping, one could not continue iterating through the group once a regex match has been made.
non_test
improve performance by splitting regex into groups currently we re doing close to regex checks for each line in the file one could easily improve upon that by grouping certain regex checks into groups and iterating through each of the groups if and only if a certain condition is met e g one could create a group for events that include triggered xxx against and make sure that those only get run when the previously mentioned syntax is found in the line one could do similar things for world triggered xxx additionally with grouping one could not continue iterating through the group once a regex match has been made
0
37,397
5,115,383,520
IssuesEvent
2017-01-06 21:38:11
dotnet/roslyn
https://api.github.com/repos/dotnet/roslyn
closed
[Flaky Test] BasicGenerateTypeDialog.xml
Area-IDE Bug Test
hard to find vsi runs this test not failed. almost always fail. https://ci.dot.net/job/Private/job/dotnet_roslyn-internal/job/master/job/windows_vsi_p0_prtest/190/console ... 20:36:52 ComboBox 'AccessList' value set to 'Public' 20:36:52 -------------------------------- 20:36:52 System.Windows.Automation.ElementNotAvailableException: Unrecognized error. 20:36:52 at MS.Internal.Automation.UiaCoreApi.CheckError(Int32 hr) 20:36:52 at MS.Internal.Automation.UiaCoreApi.UiaGetUpdatedCache(SafeNodeHandle hnode, UiaCacheRequest request, NormalizeState normalize, Condition customCondition) 20:36:52 at System.Windows.Automation.AutomationElement.FromHandle(IntPtr hwnd) 20:36:52 at Roslyn.VSHosting.Test.GenerateTypeDialogAction.FindDialog(Boolean retryIfNotFound) in D:\j\workspace\windows_vsi_p---cafb754d\Closed\Hosting\RoslynTaoActions\Actions\VisualStudio\GenerateTypeDialogAction.cs:line 54 20:36:52 at Roslyn.CommonToBothHosts.Test.AbstractOkCancelDialogAction.FindElementByAutomationId(String automationId, TreeScope searchScope) in D:\j\workspace\windows_vsi_p---cafb754d\Closed\Hosting\RoslynTaoActions\Actions\Common\AbstractOkCancelDialogAction.cs:line 166 20:36:52 at Roslyn.CommonToBothHosts.Test.AbstractOkCancelDialogAction.SelectComboBoxItem(String automationId, Func`2 selector, TreeScope searchScope) in D:\j\workspace\windows_vsi_p---cafb754d\Closed\Hosting\RoslynTaoActions\Actions\Common\AbstractOkCancelDialogAction.cs:line 0 20:36:52 at Roslyn.CommonToBothHosts.Test.AbstractOkCancelDialogAction.SelectComboBoxItem(String automationId, String text) in D:\j\workspace\windows_vsi_p---cafb754d\Closed\Hosting\RoslynTaoActions\Actions\Common\AbstractOkCancelDialogAction.cs:line 276 20:36:52 at Roslyn.CommonToBothHosts.Test.AbstractGenerateTypeDialogAction.SelectKind(String kind) in D:\j\workspace\windows_vsi_p---cafb754d\Closed\Hosting\RoslynTaoActions\Actions\Common\AbstractGenerateTypeDialogAction.cs:line 29
1.0
[Flaky Test] BasicGenerateTypeDialog.xml - hard to find vsi runs this test not failed. almost always fail. https://ci.dot.net/job/Private/job/dotnet_roslyn-internal/job/master/job/windows_vsi_p0_prtest/190/console ... 20:36:52 ComboBox 'AccessList' value set to 'Public' 20:36:52 -------------------------------- 20:36:52 System.Windows.Automation.ElementNotAvailableException: Unrecognized error. 20:36:52 at MS.Internal.Automation.UiaCoreApi.CheckError(Int32 hr) 20:36:52 at MS.Internal.Automation.UiaCoreApi.UiaGetUpdatedCache(SafeNodeHandle hnode, UiaCacheRequest request, NormalizeState normalize, Condition customCondition) 20:36:52 at System.Windows.Automation.AutomationElement.FromHandle(IntPtr hwnd) 20:36:52 at Roslyn.VSHosting.Test.GenerateTypeDialogAction.FindDialog(Boolean retryIfNotFound) in D:\j\workspace\windows_vsi_p---cafb754d\Closed\Hosting\RoslynTaoActions\Actions\VisualStudio\GenerateTypeDialogAction.cs:line 54 20:36:52 at Roslyn.CommonToBothHosts.Test.AbstractOkCancelDialogAction.FindElementByAutomationId(String automationId, TreeScope searchScope) in D:\j\workspace\windows_vsi_p---cafb754d\Closed\Hosting\RoslynTaoActions\Actions\Common\AbstractOkCancelDialogAction.cs:line 166 20:36:52 at Roslyn.CommonToBothHosts.Test.AbstractOkCancelDialogAction.SelectComboBoxItem(String automationId, Func`2 selector, TreeScope searchScope) in D:\j\workspace\windows_vsi_p---cafb754d\Closed\Hosting\RoslynTaoActions\Actions\Common\AbstractOkCancelDialogAction.cs:line 0 20:36:52 at Roslyn.CommonToBothHosts.Test.AbstractOkCancelDialogAction.SelectComboBoxItem(String automationId, String text) in D:\j\workspace\windows_vsi_p---cafb754d\Closed\Hosting\RoslynTaoActions\Actions\Common\AbstractOkCancelDialogAction.cs:line 276 20:36:52 at Roslyn.CommonToBothHosts.Test.AbstractGenerateTypeDialogAction.SelectKind(String kind) in D:\j\workspace\windows_vsi_p---cafb754d\Closed\Hosting\RoslynTaoActions\Actions\Common\AbstractGenerateTypeDialogAction.cs:line 29
test
basicgeneratetypedialog xml hard to find vsi runs this test not failed almost always fail combobox accesslist value set to public system windows automation elementnotavailableexception unrecognized error at ms internal automation uiacoreapi checkerror hr at ms internal automation uiacoreapi uiagetupdatedcache safenodehandle hnode uiacacherequest request normalizestate normalize condition customcondition at system windows automation automationelement fromhandle intptr hwnd at roslyn vshosting test generatetypedialogaction finddialog boolean retryifnotfound in d j workspace windows vsi p closed hosting roslyntaoactions actions visualstudio generatetypedialogaction cs line at roslyn commontobothhosts test abstractokcanceldialogaction findelementbyautomationid string automationid treescope searchscope in d j workspace windows vsi p closed hosting roslyntaoactions actions common abstractokcanceldialogaction cs line at roslyn commontobothhosts test abstractokcanceldialogaction selectcomboboxitem string automationid func selector treescope searchscope in d j workspace windows vsi p closed hosting roslyntaoactions actions common abstractokcanceldialogaction cs line at roslyn commontobothhosts test abstractokcanceldialogaction selectcomboboxitem string automationid string text in d j workspace windows vsi p closed hosting roslyntaoactions actions common abstractokcanceldialogaction cs line at roslyn commontobothhosts test abstractgeneratetypedialogaction selectkind string kind in d j workspace windows vsi p closed hosting roslyntaoactions actions common abstractgeneratetypedialogaction cs line
1
330,936
28,496,700,573
IssuesEvent
2023-04-18 14:41:26
lowRISC/opentitan
https://api.github.com/repos/lowRISC/opentitan
opened
[test-triage] e2e_chip_specific_startup_test_unlocked0_fpga_cw310_rom
Component:TestTriage
### Hierarchy of regression failure Chip Level ### Failure Description The tests has been failing consistently with the following log message. <details> <sumary>Log</sumary> ``` 2023-04-18T07:59:13.2746688Z [2023-04-18T07:58:55Z INFO opentitanlib::util::usb] Could not open device at bus=1 address=7: No such device (it may have been disconnected) 2023-04-18T07:59:13.2747906Z [2023-04-18T07:58:55Z INFO opentitanlib::util::usb] Could not open device at bus=1 address=40: No such device (it may have been disconnected) 2023-04-18T07:59:13.2748940Z [2023-04-18T07:58:55Z INFO opentitanlib::util::usb] Could not open device at bus=1 address=69: No such device (it may have been disconnected) 2023-04-18T07:59:13.2749939Z [2023-04-18T07:58:55Z INFO opentitanlib::util::usb] Could not open device at bus=1 address=25: No such device (it may have been disconnected) 2023-04-18T07:59:13.2750576Z [2023-04-18T07:58:55Z INFO opentitanlib::io::uart] set_flow_control to false 2023-04-18T07:59:13.2751355Z [2023-04-18T07:58:55Z INFO opentitanlib::test_utils::load_bitstream] Loading bitstream: "sw/device/silicon_creator/rom/e2e/bitstream_chip_specific_startup_test_unlocked0.bit" 2023-04-18T07:59:13.2752101Z [2023-04-18T07:58:55Z INFO opentitanlib::util::usr_access] Bitstream file USR_ACCESS value: 0xd15f078e 2023-04-18T07:59:13.2752748Z [2023-04-18T07:58:55Z INFO opentitanlib::util::rom_detect] Current bitstream: "ROM:d4b97739\r" 2023-04-18T07:59:13.2753226Z [2023-04-18T07:58:55Z INFO opentitanlib::transport::cw310] Programming the FPGA bitstream. 2023-04-18T07:59:13.2753514Z [2023-04-18T07:59:09Z INFO opentitanlib::test_utils::init] load_bitstream: success. 2023-04-18T07:59:13.2753701Z "load_bitstream": true 2023-04-18T07:59:13.2753955Z [2023-04-18T07:59:09Z INFO opentitanlib::bootstrap] Asserting bootstrap pins... 2023-04-18T07:59:13.2754217Z [2023-04-18T07:59:09Z INFO opentitanlib::app] Asserting the reset signal 2023-04-18T07:59:13.2754502Z [2023-04-18T07:59:09Z INFO opentitanlib::app] Deasserting the reset signal 2023-04-18T07:59:13.2754790Z [2023-04-18T07:59:09Z INFO opentitanlib::bootstrap] Performing bootstrap... 2023-04-18T07:59:13.2755063Z [2023-04-18T07:59:12Z INFO opentitanlib::bootstrap] Releasing bootstrap pins... 2023-04-18T07:59:13.2755323Z [2023-04-18T07:59:12Z INFO opentitanlib::app] Asserting the reset signal 2023-04-18T07:59:13.2755591Z [2023-04-18T07:59:12Z INFO opentitanlib::app] Deasserting the reset signal 2023-04-18T07:59:13.2755869Z [2023-04-18T07:59:12Z INFO opentitanlib::test_utils::init] bootstrap: success. 2023-04-18T07:59:13.2756029Z "bootstrap": true 2023-04-18T07:59:13.2756171Z 343:Starting test test_chip_specific_startup... 2023-04-18T07:59:13.2756310Z ROM:d15f078e 2023-04-18T07:59:13.2756423Z bootstrap:1 2023-04-18T07:59:13.2759762Z ROM:d15f078e 2023-04-18T07:59:13.2761075Z I00000 ottf_main.c:110] Running [2023-04-18T07:59:13Z INFO opentitanlib::test_utils::rpc] Sending: "ChipStartup" 2023-04-18T07:59:13.2761698Z sw/device/silicon_creator/rom/e2e/chip_specific_startup.c 2023-04-18T07:59:13.2762000Z I00001 chip_specific_startup.c:84] Initializing DIFs 2023-04-18T07:59:13.2762308Z I00002 chip_specific_startup.c:95] Querying hardware 2023-04-18T07:59:13.2763132Z RESP_OK:{"otp":{"creator_sw_cfg_ast_init_en":6,"creator_sw_cfg_jitter_en":9},"lc_state":1,"mstatus":128,"jitter":false,"entropy":{"entropy_src":9474201,"csrng":1638,"edn":39270},"epmp":{"cfg":[10063104,39309,2332033024,2609946368],"addr":[8192,13733,12287,134219968,134224620,134348799,0,0,0,0,268435456,335544320,0,16895,67137536,67125247],"mseccfg":6},"ast_init_done":true,"sram":{"scr_key_valid":true,"scr_key_seed_valid":true,"init_done":true}} 2023-04-18T07:59:13.2764092Z [2023-04-18T07:59:13Z INFO e2e_chip_specific_startup] chip_startup_t { 2023-04-18T07:59:13.2764325Z otp: rom_otp_config_t { 2023-04-18T07:59:13.2764497Z creator_sw_cfg_ast_init_en: 0x6, 2023-04-18T07:59:13.2764685Z creator_sw_cfg_jitter_en: 0x9, 2023-04-18T07:59:13.2764834Z }, 2023-04-18T07:59:13.2764977Z lc_state: 0x1, 2023-04-18T07:59:13.2765130Z mstatus: 0x80, 2023-04-18T07:59:13.2765272Z jitter: false, 2023-04-18T07:59:13.2765438Z entropy: rom_entropy_config_t { 2023-04-18T07:59:13.2765611Z entropy_src: 0x909099, 2023-04-18T07:59:13.2765763Z csrng: 0x666, 2023-04-18T07:59:13.2766124Z edn: 0x9966, 2023-04-18T07:59:13.2766259Z }, 2023-04-18T07:59:13.2766411Z epmp: rom_epmp_config_t { 2023-04-18T07:59:13.2766565Z cfg: [ 2023-04-18T07:59:13.2766700Z 0x998d00, 2023-04-18T07:59:13.2766843Z 0x998d, 2023-04-18T07:59:13.2766990Z 0x8b000000, 2023-04-18T07:59:13.2767132Z 0x9b909f00, 2023-04-18T07:59:13.2767384Z ], 2023-04-18T07:59:13.2767514Z addr: [ 2023-04-18T07:59:13.2767655Z 0x2000, 2023-04-18T07:59:13.2767797Z 0x35a5, 2023-04-18T07:59:13.2767929Z 0x2fff, 2023-04-18T07:59:13.2768072Z 0x80008c0, 2023-04-18T07:59:13.2768219Z 0x8001aec, 2023-04-18T07:59:13.2768356Z 0x801ffff, 2023-04-18T07:59:13.2768500Z 0x0, 2023-04-18T07:59:13.2768630Z 0x0, 2023-04-18T07:59:13.2768766Z 0x0, 2023-04-18T07:59:13.2768906Z 0x0, 2023-04-18T07:59:13.2769039Z 0x10000000, 2023-04-18T07:59:13.2769187Z 0x14000000, 2023-04-18T07:59:13.2769328Z 0x0, 2023-04-18T07:59:13.2769470Z 0x41ff, 2023-04-18T07:59:13.2769604Z 0x4007000, 2023-04-18T07:59:13.2769752Z 0x4003fff, 2023-04-18T07:59:13.2769884Z ], 2023-04-18T07:59:13.2770024Z mseccfg: 0x6, 2023-04-18T07:59:13.2770166Z }, 2023-04-18T07:59:13.2770312Z ast_init_done: true, 2023-04-18T07:59:13.2770474Z sram: sram_init_t { 2023-04-18T07:59:13.2770631Z scr_key_valid: true, 2023-04-18T07:59:13.2770800Z scr_key_seed_valid: true, 2023-04-18T07:59:13.2771083Z init_done: true, 2023-04-18T07:59:13.2771284Z }, 2023-04-18T07:59:13.2771493Z } 2023-04-18T07:59:13.2771839Z [2023-04-18T07:59:13Z INFO e2e_chip_specific_startup] CREATOR_SW_CFG_AST_INIT_EN = True 2023-04-18T07:59:13.2772209Z [2023-04-18T07:59:13Z INFO e2e_chip_specific_startup] CREATOR_SW_CFG_JITTER_EN = False 2023-04-18T07:59:13.2772571Z [2023-04-18T07:59:13Z INFO e2e_chip_specific_startup] lc_state = TestUnlocked0 2023-04-18T07:59:13.2772895Z [2023-04-18T07:59:13Z INFO e2e_chip_specific_startup] epmp = Epmp { 2023-04-18T07:59:13.2773090Z entry: [ 2023-04-18T07:59:13.2773235Z EpmpEntry { 2023-04-18T07:59:13.2773379Z cfg: 0x0, 2023-04-18T07:59:13.2773529Z kind: Off, 2023-04-18T07:59:13.2773688Z range: EpmpAddressRange( 2023-04-18T07:59:13.2773840Z 0x0, 2023-04-18T07:59:13.2773974Z 0x0, 2023-04-18T07:59:13.2774109Z ), 2023-04-18T07:59:13.2774242Z }, 2023-04-18T07:59:13.2774379Z EpmpEntry { 2023-04-18T07:59:13.2774519Z cfg: 0x85, 2023-04-18T07:59:13.2774663Z kind: Tor, 2023-04-18T07:59:13.2774815Z range: EpmpAddressRange( 2023-04-18T07:59:13.2774972Z 0x8000, 2023-04-18T07:59:13.2775114Z 0xd694, 2023-04-18T07:59:13.2775252Z ), 2023-04-18T07:59:13.2775383Z }, 2023-04-18T07:59:13.2775521Z EpmpEntry { 2023-04-18T07:59:13.2775665Z cfg: 0x81, 2023-04-18T07:59:13.2775810Z kind: Napot, 2023-04-18T07:59:13.2775966Z range: EpmpAddressRange( 2023-04-18T07:59:13.2776122Z 0x8000, 2023-04-18T07:59:13.2776266Z 0x10000, 2023-04-18T07:59:13.2776405Z ), 2023-04-18T07:59:13.2776537Z }, 2023-04-18T07:59:13.2776676Z EpmpEntry { 2023-04-18T07:59:13.2776815Z cfg: 0x0, 2023-04-18T07:59:13.2776957Z kind: Off, 2023-04-18T07:59:13.2777111Z range: EpmpAddressRange( 2023-04-18T07:59:13.2777264Z 0x0, 2023-04-18T07:59:13.2777401Z 0x0, 2023-04-18T07:59:13.2777536Z ), 2023-04-18T07:59:13.2777769Z }, 2023-04-18T07:59:13.2777906Z EpmpEntry { 2023-04-18T07:59:13.2778050Z cfg: 0x85, 2023-04-18T07:59:13.2778192Z kind: Tor, 2023-04-18T07:59:13.2778351Z range: EpmpAddressRange( 2023-04-18T07:59:13.2778506Z 0x20002300, 2023-04-18T07:59:13.2778655Z 0x20006bb0, 2023-04-18T07:59:13.2778796Z ), 2023-04-18T07:59:13.2779002Z }, 2023-04-18T07:59:13.2779139Z EpmpEntry { 2023-04-18T07:59:13.2779282Z cfg: 0x81, 2023-04-18T07:59:13.2779427Z kind: Napot, 2023-04-18T07:59:13.2779584Z range: EpmpAddressRange( 2023-04-18T07:59:13.2779741Z 0x20000000, 2023-04-18T07:59:13.2779885Z 0x20100000, 2023-04-18T07:59:13.2780024Z ), 2023-04-18T07:59:13.2780154Z }, 2023-04-18T07:59:13.2780291Z EpmpEntry { 2023-04-18T07:59:13.2780434Z cfg: 0x0, 2023-04-18T07:59:13.2780578Z kind: Off, 2023-04-18T07:59:13.2780730Z range: EpmpAddressRange( 2023-04-18T07:59:13.2780878Z 0x0, 2023-04-18T07:59:13.2781014Z 0x0, 2023-04-18T07:59:13.2781149Z ), 2023-04-18T07:59:13.2781277Z }, 2023-04-18T07:59:13.2781420Z EpmpEntry { 2023-04-18T07:59:13.2781622Z cfg: 0x0, 2023-04-18T07:59:13.2781775Z kind: Off, 2023-04-18T07:59:13.2781924Z range: EpmpAddressRange( 2023-04-18T07:59:13.2782077Z 0x0, 2023-04-18T07:59:13.2782216Z 0x0, 2023-04-18T07:59:13.2782343Z ), 2023-04-18T07:59:13.2782480Z }, 2023-04-18T07:59:13.2782611Z EpmpEntry { 2023-04-18T07:59:13.2782755Z cfg: 0x0, 2023-04-18T07:59:13.2782894Z kind: Off, 2023-04-18T07:59:13.2783063Z range: EpmpAddressRange( 2023-04-18T07:59:13.2783212Z 0x0, 2023-04-18T07:59:13.2783348Z 0x0, 2023-04-18T07:59:13.2783477Z ), 2023-04-18T07:59:13.2783618Z }, 2023-04-18T07:59:13.2783753Z EpmpEntry { 2023-04-18T07:59:13.2783899Z cfg: 0x0, 2023-04-18T07:59:13.2784042Z kind: Off, 2023-04-18T07:59:13.2784190Z range: EpmpAddressRange( 2023-04-18T07:59:13.2784342Z 0x0, 2023-04-18T07:59:13.2784481Z 0x0, 2023-04-18T07:59:13.2784607Z ), 2023-04-18T07:59:13.2784738Z }, 2023-04-18T07:59:13.2784868Z EpmpEntry { 2023-04-18T07:59:13.2785011Z cfg: 0x0, 2023-04-18T07:59:13.2785149Z kind: Off, 2023-04-18T07:59:13.2785306Z range: EpmpAddressRange( 2023-04-18T07:59:13.2785457Z 0x0, 2023-04-18T07:59:13.2785592Z 0x0, 2023-04-18T07:59:13.2785724Z ), 2023-04-18T07:59:13.2785851Z }, 2023-04-18T07:59:13.2786001Z EpmpEntry { 2023-04-18T07:59:13.2786138Z cfg: 0x83, 2023-04-18T07:59:13.2786281Z kind: Tor, 2023-04-18T07:59:13.2786428Z range: EpmpAddressRange( 2023-04-18T07:59:13.2786586Z 0x40000000, 2023-04-18T07:59:13.2786734Z 0x50000000, 2023-04-18T07:59:13.2786864Z ), 2023-04-18T07:59:13.2787000Z }, 2023-04-18T07:59:13.2787130Z EpmpEntry { 2023-04-18T07:59:13.2787273Z cfg: 0x0, 2023-04-18T07:59:13.2787418Z kind: Off, 2023-04-18T07:59:13.2787566Z range: EpmpAddressRange( 2023-04-18T07:59:13.2787719Z 0x0, 2023-04-18T07:59:13.2787852Z 0x0, 2023-04-18T07:59:13.2787989Z ), 2023-04-18T07:59:13.2788115Z }, 2023-04-18T07:59:13.2788253Z EpmpEntry { 2023-04-18T07:59:13.2788398Z cfg: 0x87, 2023-04-18T07:59:13.2788611Z kind: Napot, 2023-04-18T07:59:13.2788770Z range: EpmpAddressRange( 2023-04-18T07:59:13.2788918Z 0x10000, 2023-04-18T07:59:13.2789063Z 0x11000, 2023-04-18T07:59:13.2789199Z ), 2023-04-18T07:59:13.2789326Z }, 2023-04-18T07:59:13.2789462Z EpmpEntry { 2023-04-18T07:59:13.2789606Z cfg: 0x80, 2023-04-18T07:59:13.2789801Z kind: Na4, 2023-04-18T07:59:13.2789957Z range: EpmpAddressRange( 2023-04-18T07:59:13.2790107Z 0x1001c000, 2023-04-18T07:59:13.2790255Z 0x1001c004, 2023-04-18T07:59:13.2790395Z ), 2023-04-18T07:59:13.2790519Z }, 2023-04-18T07:59:13.2790656Z EpmpEntry { 2023-04-18T07:59:13.2790803Z cfg: 0x83, 2023-04-18T07:59:13.2790943Z kind: Napot, 2023-04-18T07:59:13.2791100Z range: EpmpAddressRange( 2023-04-18T07:59:13.2791255Z 0x10000000, 2023-04-18T07:59:13.2791405Z 0x10020000, 2023-04-18T07:59:13.2791546Z ), 2023-04-18T07:59:13.2791670Z }, 2023-04-18T07:59:13.2791801Z ], 2023-04-18T07:59:13.2791929Z } 2023-04-18T07:59:13.2792287Z [2023-04-18T07:59:13Z INFO e2e_chip_specific_startup] Checking that the debug memory region is enabled in state TestUnlocked0 2023-04-18T07:59:13.2792669Z [2023-04-18T07:59:13Z INFO e2e_chip_specific_startup] lc_state = TestUnlocked0 2023-04-18T07:59:13.2793090Z [2023-04-18T07:59:13Z INFO e2e_chip_specific_startup] Checking that the SRAM scrambling key seed is not valid in LC state TestUnlocked0 2023-04-18T07:59:13.2793545Z thread 'main' panicked at 'assertion failed: !cs.sram.scr_key_seed_valid', sw/host/tests/rom/e2e_chip_specific_startup/src/main.rs:311:13 ``` </details> ### Steps to Reproduce - GitHub Revision: master ```sh bazel test --define DISABLE_VERILATOR_BUILD=true --define bitstream=gcp_splice \ --test_tag_filters=-verilator,-dv,-broken --build_tests_only \ //sw/device/silicon_creator/rom/e2e:e2e_chip_specific_startup_test ``` ### Tests with similar or related failures - [ ] e2e_chip_specific_startup_test_unlocked0_fpga_cw310_rom
1.0
[test-triage] e2e_chip_specific_startup_test_unlocked0_fpga_cw310_rom - ### Hierarchy of regression failure Chip Level ### Failure Description The tests has been failing consistently with the following log message. <details> <sumary>Log</sumary> ``` 2023-04-18T07:59:13.2746688Z [2023-04-18T07:58:55Z INFO opentitanlib::util::usb] Could not open device at bus=1 address=7: No such device (it may have been disconnected) 2023-04-18T07:59:13.2747906Z [2023-04-18T07:58:55Z INFO opentitanlib::util::usb] Could not open device at bus=1 address=40: No such device (it may have been disconnected) 2023-04-18T07:59:13.2748940Z [2023-04-18T07:58:55Z INFO opentitanlib::util::usb] Could not open device at bus=1 address=69: No such device (it may have been disconnected) 2023-04-18T07:59:13.2749939Z [2023-04-18T07:58:55Z INFO opentitanlib::util::usb] Could not open device at bus=1 address=25: No such device (it may have been disconnected) 2023-04-18T07:59:13.2750576Z [2023-04-18T07:58:55Z INFO opentitanlib::io::uart] set_flow_control to false 2023-04-18T07:59:13.2751355Z [2023-04-18T07:58:55Z INFO opentitanlib::test_utils::load_bitstream] Loading bitstream: "sw/device/silicon_creator/rom/e2e/bitstream_chip_specific_startup_test_unlocked0.bit" 2023-04-18T07:59:13.2752101Z [2023-04-18T07:58:55Z INFO opentitanlib::util::usr_access] Bitstream file USR_ACCESS value: 0xd15f078e 2023-04-18T07:59:13.2752748Z [2023-04-18T07:58:55Z INFO opentitanlib::util::rom_detect] Current bitstream: "ROM:d4b97739\r" 2023-04-18T07:59:13.2753226Z [2023-04-18T07:58:55Z INFO opentitanlib::transport::cw310] Programming the FPGA bitstream. 2023-04-18T07:59:13.2753514Z [2023-04-18T07:59:09Z INFO opentitanlib::test_utils::init] load_bitstream: success. 2023-04-18T07:59:13.2753701Z "load_bitstream": true 2023-04-18T07:59:13.2753955Z [2023-04-18T07:59:09Z INFO opentitanlib::bootstrap] Asserting bootstrap pins... 2023-04-18T07:59:13.2754217Z [2023-04-18T07:59:09Z INFO opentitanlib::app] Asserting the reset signal 2023-04-18T07:59:13.2754502Z [2023-04-18T07:59:09Z INFO opentitanlib::app] Deasserting the reset signal 2023-04-18T07:59:13.2754790Z [2023-04-18T07:59:09Z INFO opentitanlib::bootstrap] Performing bootstrap... 2023-04-18T07:59:13.2755063Z [2023-04-18T07:59:12Z INFO opentitanlib::bootstrap] Releasing bootstrap pins... 2023-04-18T07:59:13.2755323Z [2023-04-18T07:59:12Z INFO opentitanlib::app] Asserting the reset signal 2023-04-18T07:59:13.2755591Z [2023-04-18T07:59:12Z INFO opentitanlib::app] Deasserting the reset signal 2023-04-18T07:59:13.2755869Z [2023-04-18T07:59:12Z INFO opentitanlib::test_utils::init] bootstrap: success. 2023-04-18T07:59:13.2756029Z "bootstrap": true 2023-04-18T07:59:13.2756171Z 343:Starting test test_chip_specific_startup... 2023-04-18T07:59:13.2756310Z ROM:d15f078e 2023-04-18T07:59:13.2756423Z bootstrap:1 2023-04-18T07:59:13.2759762Z ROM:d15f078e 2023-04-18T07:59:13.2761075Z I00000 ottf_main.c:110] Running [2023-04-18T07:59:13Z INFO opentitanlib::test_utils::rpc] Sending: "ChipStartup" 2023-04-18T07:59:13.2761698Z sw/device/silicon_creator/rom/e2e/chip_specific_startup.c 2023-04-18T07:59:13.2762000Z I00001 chip_specific_startup.c:84] Initializing DIFs 2023-04-18T07:59:13.2762308Z I00002 chip_specific_startup.c:95] Querying hardware 2023-04-18T07:59:13.2763132Z RESP_OK:{"otp":{"creator_sw_cfg_ast_init_en":6,"creator_sw_cfg_jitter_en":9},"lc_state":1,"mstatus":128,"jitter":false,"entropy":{"entropy_src":9474201,"csrng":1638,"edn":39270},"epmp":{"cfg":[10063104,39309,2332033024,2609946368],"addr":[8192,13733,12287,134219968,134224620,134348799,0,0,0,0,268435456,335544320,0,16895,67137536,67125247],"mseccfg":6},"ast_init_done":true,"sram":{"scr_key_valid":true,"scr_key_seed_valid":true,"init_done":true}} 2023-04-18T07:59:13.2764092Z [2023-04-18T07:59:13Z INFO e2e_chip_specific_startup] chip_startup_t { 2023-04-18T07:59:13.2764325Z otp: rom_otp_config_t { 2023-04-18T07:59:13.2764497Z creator_sw_cfg_ast_init_en: 0x6, 2023-04-18T07:59:13.2764685Z creator_sw_cfg_jitter_en: 0x9, 2023-04-18T07:59:13.2764834Z }, 2023-04-18T07:59:13.2764977Z lc_state: 0x1, 2023-04-18T07:59:13.2765130Z mstatus: 0x80, 2023-04-18T07:59:13.2765272Z jitter: false, 2023-04-18T07:59:13.2765438Z entropy: rom_entropy_config_t { 2023-04-18T07:59:13.2765611Z entropy_src: 0x909099, 2023-04-18T07:59:13.2765763Z csrng: 0x666, 2023-04-18T07:59:13.2766124Z edn: 0x9966, 2023-04-18T07:59:13.2766259Z }, 2023-04-18T07:59:13.2766411Z epmp: rom_epmp_config_t { 2023-04-18T07:59:13.2766565Z cfg: [ 2023-04-18T07:59:13.2766700Z 0x998d00, 2023-04-18T07:59:13.2766843Z 0x998d, 2023-04-18T07:59:13.2766990Z 0x8b000000, 2023-04-18T07:59:13.2767132Z 0x9b909f00, 2023-04-18T07:59:13.2767384Z ], 2023-04-18T07:59:13.2767514Z addr: [ 2023-04-18T07:59:13.2767655Z 0x2000, 2023-04-18T07:59:13.2767797Z 0x35a5, 2023-04-18T07:59:13.2767929Z 0x2fff, 2023-04-18T07:59:13.2768072Z 0x80008c0, 2023-04-18T07:59:13.2768219Z 0x8001aec, 2023-04-18T07:59:13.2768356Z 0x801ffff, 2023-04-18T07:59:13.2768500Z 0x0, 2023-04-18T07:59:13.2768630Z 0x0, 2023-04-18T07:59:13.2768766Z 0x0, 2023-04-18T07:59:13.2768906Z 0x0, 2023-04-18T07:59:13.2769039Z 0x10000000, 2023-04-18T07:59:13.2769187Z 0x14000000, 2023-04-18T07:59:13.2769328Z 0x0, 2023-04-18T07:59:13.2769470Z 0x41ff, 2023-04-18T07:59:13.2769604Z 0x4007000, 2023-04-18T07:59:13.2769752Z 0x4003fff, 2023-04-18T07:59:13.2769884Z ], 2023-04-18T07:59:13.2770024Z mseccfg: 0x6, 2023-04-18T07:59:13.2770166Z }, 2023-04-18T07:59:13.2770312Z ast_init_done: true, 2023-04-18T07:59:13.2770474Z sram: sram_init_t { 2023-04-18T07:59:13.2770631Z scr_key_valid: true, 2023-04-18T07:59:13.2770800Z scr_key_seed_valid: true, 2023-04-18T07:59:13.2771083Z init_done: true, 2023-04-18T07:59:13.2771284Z }, 2023-04-18T07:59:13.2771493Z } 2023-04-18T07:59:13.2771839Z [2023-04-18T07:59:13Z INFO e2e_chip_specific_startup] CREATOR_SW_CFG_AST_INIT_EN = True 2023-04-18T07:59:13.2772209Z [2023-04-18T07:59:13Z INFO e2e_chip_specific_startup] CREATOR_SW_CFG_JITTER_EN = False 2023-04-18T07:59:13.2772571Z [2023-04-18T07:59:13Z INFO e2e_chip_specific_startup] lc_state = TestUnlocked0 2023-04-18T07:59:13.2772895Z [2023-04-18T07:59:13Z INFO e2e_chip_specific_startup] epmp = Epmp { 2023-04-18T07:59:13.2773090Z entry: [ 2023-04-18T07:59:13.2773235Z EpmpEntry { 2023-04-18T07:59:13.2773379Z cfg: 0x0, 2023-04-18T07:59:13.2773529Z kind: Off, 2023-04-18T07:59:13.2773688Z range: EpmpAddressRange( 2023-04-18T07:59:13.2773840Z 0x0, 2023-04-18T07:59:13.2773974Z 0x0, 2023-04-18T07:59:13.2774109Z ), 2023-04-18T07:59:13.2774242Z }, 2023-04-18T07:59:13.2774379Z EpmpEntry { 2023-04-18T07:59:13.2774519Z cfg: 0x85, 2023-04-18T07:59:13.2774663Z kind: Tor, 2023-04-18T07:59:13.2774815Z range: EpmpAddressRange( 2023-04-18T07:59:13.2774972Z 0x8000, 2023-04-18T07:59:13.2775114Z 0xd694, 2023-04-18T07:59:13.2775252Z ), 2023-04-18T07:59:13.2775383Z }, 2023-04-18T07:59:13.2775521Z EpmpEntry { 2023-04-18T07:59:13.2775665Z cfg: 0x81, 2023-04-18T07:59:13.2775810Z kind: Napot, 2023-04-18T07:59:13.2775966Z range: EpmpAddressRange( 2023-04-18T07:59:13.2776122Z 0x8000, 2023-04-18T07:59:13.2776266Z 0x10000, 2023-04-18T07:59:13.2776405Z ), 2023-04-18T07:59:13.2776537Z }, 2023-04-18T07:59:13.2776676Z EpmpEntry { 2023-04-18T07:59:13.2776815Z cfg: 0x0, 2023-04-18T07:59:13.2776957Z kind: Off, 2023-04-18T07:59:13.2777111Z range: EpmpAddressRange( 2023-04-18T07:59:13.2777264Z 0x0, 2023-04-18T07:59:13.2777401Z 0x0, 2023-04-18T07:59:13.2777536Z ), 2023-04-18T07:59:13.2777769Z }, 2023-04-18T07:59:13.2777906Z EpmpEntry { 2023-04-18T07:59:13.2778050Z cfg: 0x85, 2023-04-18T07:59:13.2778192Z kind: Tor, 2023-04-18T07:59:13.2778351Z range: EpmpAddressRange( 2023-04-18T07:59:13.2778506Z 0x20002300, 2023-04-18T07:59:13.2778655Z 0x20006bb0, 2023-04-18T07:59:13.2778796Z ), 2023-04-18T07:59:13.2779002Z }, 2023-04-18T07:59:13.2779139Z EpmpEntry { 2023-04-18T07:59:13.2779282Z cfg: 0x81, 2023-04-18T07:59:13.2779427Z kind: Napot, 2023-04-18T07:59:13.2779584Z range: EpmpAddressRange( 2023-04-18T07:59:13.2779741Z 0x20000000, 2023-04-18T07:59:13.2779885Z 0x20100000, 2023-04-18T07:59:13.2780024Z ), 2023-04-18T07:59:13.2780154Z }, 2023-04-18T07:59:13.2780291Z EpmpEntry { 2023-04-18T07:59:13.2780434Z cfg: 0x0, 2023-04-18T07:59:13.2780578Z kind: Off, 2023-04-18T07:59:13.2780730Z range: EpmpAddressRange( 2023-04-18T07:59:13.2780878Z 0x0, 2023-04-18T07:59:13.2781014Z 0x0, 2023-04-18T07:59:13.2781149Z ), 2023-04-18T07:59:13.2781277Z }, 2023-04-18T07:59:13.2781420Z EpmpEntry { 2023-04-18T07:59:13.2781622Z cfg: 0x0, 2023-04-18T07:59:13.2781775Z kind: Off, 2023-04-18T07:59:13.2781924Z range: EpmpAddressRange( 2023-04-18T07:59:13.2782077Z 0x0, 2023-04-18T07:59:13.2782216Z 0x0, 2023-04-18T07:59:13.2782343Z ), 2023-04-18T07:59:13.2782480Z }, 2023-04-18T07:59:13.2782611Z EpmpEntry { 2023-04-18T07:59:13.2782755Z cfg: 0x0, 2023-04-18T07:59:13.2782894Z kind: Off, 2023-04-18T07:59:13.2783063Z range: EpmpAddressRange( 2023-04-18T07:59:13.2783212Z 0x0, 2023-04-18T07:59:13.2783348Z 0x0, 2023-04-18T07:59:13.2783477Z ), 2023-04-18T07:59:13.2783618Z }, 2023-04-18T07:59:13.2783753Z EpmpEntry { 2023-04-18T07:59:13.2783899Z cfg: 0x0, 2023-04-18T07:59:13.2784042Z kind: Off, 2023-04-18T07:59:13.2784190Z range: EpmpAddressRange( 2023-04-18T07:59:13.2784342Z 0x0, 2023-04-18T07:59:13.2784481Z 0x0, 2023-04-18T07:59:13.2784607Z ), 2023-04-18T07:59:13.2784738Z }, 2023-04-18T07:59:13.2784868Z EpmpEntry { 2023-04-18T07:59:13.2785011Z cfg: 0x0, 2023-04-18T07:59:13.2785149Z kind: Off, 2023-04-18T07:59:13.2785306Z range: EpmpAddressRange( 2023-04-18T07:59:13.2785457Z 0x0, 2023-04-18T07:59:13.2785592Z 0x0, 2023-04-18T07:59:13.2785724Z ), 2023-04-18T07:59:13.2785851Z }, 2023-04-18T07:59:13.2786001Z EpmpEntry { 2023-04-18T07:59:13.2786138Z cfg: 0x83, 2023-04-18T07:59:13.2786281Z kind: Tor, 2023-04-18T07:59:13.2786428Z range: EpmpAddressRange( 2023-04-18T07:59:13.2786586Z 0x40000000, 2023-04-18T07:59:13.2786734Z 0x50000000, 2023-04-18T07:59:13.2786864Z ), 2023-04-18T07:59:13.2787000Z }, 2023-04-18T07:59:13.2787130Z EpmpEntry { 2023-04-18T07:59:13.2787273Z cfg: 0x0, 2023-04-18T07:59:13.2787418Z kind: Off, 2023-04-18T07:59:13.2787566Z range: EpmpAddressRange( 2023-04-18T07:59:13.2787719Z 0x0, 2023-04-18T07:59:13.2787852Z 0x0, 2023-04-18T07:59:13.2787989Z ), 2023-04-18T07:59:13.2788115Z }, 2023-04-18T07:59:13.2788253Z EpmpEntry { 2023-04-18T07:59:13.2788398Z cfg: 0x87, 2023-04-18T07:59:13.2788611Z kind: Napot, 2023-04-18T07:59:13.2788770Z range: EpmpAddressRange( 2023-04-18T07:59:13.2788918Z 0x10000, 2023-04-18T07:59:13.2789063Z 0x11000, 2023-04-18T07:59:13.2789199Z ), 2023-04-18T07:59:13.2789326Z }, 2023-04-18T07:59:13.2789462Z EpmpEntry { 2023-04-18T07:59:13.2789606Z cfg: 0x80, 2023-04-18T07:59:13.2789801Z kind: Na4, 2023-04-18T07:59:13.2789957Z range: EpmpAddressRange( 2023-04-18T07:59:13.2790107Z 0x1001c000, 2023-04-18T07:59:13.2790255Z 0x1001c004, 2023-04-18T07:59:13.2790395Z ), 2023-04-18T07:59:13.2790519Z }, 2023-04-18T07:59:13.2790656Z EpmpEntry { 2023-04-18T07:59:13.2790803Z cfg: 0x83, 2023-04-18T07:59:13.2790943Z kind: Napot, 2023-04-18T07:59:13.2791100Z range: EpmpAddressRange( 2023-04-18T07:59:13.2791255Z 0x10000000, 2023-04-18T07:59:13.2791405Z 0x10020000, 2023-04-18T07:59:13.2791546Z ), 2023-04-18T07:59:13.2791670Z }, 2023-04-18T07:59:13.2791801Z ], 2023-04-18T07:59:13.2791929Z } 2023-04-18T07:59:13.2792287Z [2023-04-18T07:59:13Z INFO e2e_chip_specific_startup] Checking that the debug memory region is enabled in state TestUnlocked0 2023-04-18T07:59:13.2792669Z [2023-04-18T07:59:13Z INFO e2e_chip_specific_startup] lc_state = TestUnlocked0 2023-04-18T07:59:13.2793090Z [2023-04-18T07:59:13Z INFO e2e_chip_specific_startup] Checking that the SRAM scrambling key seed is not valid in LC state TestUnlocked0 2023-04-18T07:59:13.2793545Z thread 'main' panicked at 'assertion failed: !cs.sram.scr_key_seed_valid', sw/host/tests/rom/e2e_chip_specific_startup/src/main.rs:311:13 ``` </details> ### Steps to Reproduce - GitHub Revision: master ```sh bazel test --define DISABLE_VERILATOR_BUILD=true --define bitstream=gcp_splice \ --test_tag_filters=-verilator,-dv,-broken --build_tests_only \ //sw/device/silicon_creator/rom/e2e:e2e_chip_specific_startup_test ``` ### Tests with similar or related failures - [ ] e2e_chip_specific_startup_test_unlocked0_fpga_cw310_rom
test
chip specific startup test fpga rom hierarchy of regression failure chip level failure description the tests has been failing consistently with the following log message log could not open device at bus address no such device it may have been disconnected could not open device at bus address no such device it may have been disconnected could not open device at bus address no such device it may have been disconnected could not open device at bus address no such device it may have been disconnected set flow control to false loading bitstream sw device silicon creator rom bitstream chip specific startup test bit bitstream file usr access value current bitstream rom r programming the fpga bitstream load bitstream success load bitstream true asserting bootstrap pins asserting the reset signal deasserting the reset signal performing bootstrap releasing bootstrap pins asserting the reset signal deasserting the reset signal bootstrap success bootstrap true starting test test chip specific startup rom bootstrap rom ottf main c running sending chipstartup sw device silicon creator rom chip specific startup c chip specific startup c initializing difs chip specific startup c querying hardware resp ok otp creator sw cfg ast init en creator sw cfg jitter en lc state mstatus jitter false entropy entropy src csrng edn epmp cfg addr mseccfg ast init done true sram scr key valid true scr key seed valid true init done true chip startup t otp rom otp config t creator sw cfg ast init en creator sw cfg jitter en lc state mstatus jitter false entropy rom entropy config t entropy src csrng edn epmp rom epmp config t cfg addr mseccfg ast init done true sram sram init t scr key valid true scr key seed valid true init done true creator sw cfg ast init en true creator sw cfg jitter en false lc state epmp epmp entry epmpentry cfg kind off range epmpaddressrange epmpentry cfg kind tor range epmpaddressrange epmpentry cfg kind napot range epmpaddressrange epmpentry cfg kind off range epmpaddressrange epmpentry cfg kind tor range epmpaddressrange epmpentry cfg kind napot range epmpaddressrange epmpentry cfg kind off range epmpaddressrange epmpentry cfg kind off range epmpaddressrange epmpentry cfg kind off range epmpaddressrange epmpentry cfg kind off range epmpaddressrange epmpentry cfg kind off range epmpaddressrange epmpentry cfg kind tor range epmpaddressrange epmpentry cfg kind off range epmpaddressrange epmpentry cfg kind napot range epmpaddressrange epmpentry cfg kind range epmpaddressrange epmpentry cfg kind napot range epmpaddressrange checking that the debug memory region is enabled in state lc state checking that the sram scrambling key seed is not valid in lc state thread main panicked at assertion failed cs sram scr key seed valid sw host tests rom chip specific startup src main rs steps to reproduce github revision master sh bazel test define disable verilator build true define bitstream gcp splice test tag filters verilator dv broken build tests only sw device silicon creator rom chip specific startup test tests with similar or related failures chip specific startup test fpga rom
1
335,564
30,051,455,794
IssuesEvent
2023-06-28 01:05:23
ray-project/ray
https://api.github.com/repos/ray-project/ray
closed
[release/air] `air_example_dreambooth_finetuning.aws` is failing
P0 air release-test
This test is marked as unstable, which is why it doesn't show up on the OSSCI dashboard. * [Job link](https://console.anyscale-staging.com/o/anyscale-internal/jobs/prodjob_e2abhvzwlavazhugqam2a3ywvx) * [Buildkite](https://buildkite.com/ray-project/release-tests-branch/builds/1773#01889dc2-e43d-4a21-b967-9a65add90e28) Error log: ``` ╭───────────────────── Traceback (most recent call last) ──────────────────────╮ │ │ │ /tmp/ray/session_2023-06-09_07-20-06_720713_3789/runtime_resources/working_d │ │ ir_files/s3_ray-release-automation-results_working_dirs_air_example_dreamboo │ │ th_finetuning_lkqxnxtopw__anyscale_pkg_ab09cd7a8ba72a9f87697e2489006ca5/drea │ │ mbooth/train.py:207 in <module> │ │ │ │ 204 │ args = train_arguments().parse_args() │ │ 205 │ │ │ 206 │ # Build training dataset. │ │ ❱ 207 │ train_dataset = get_train_dataset(args) │ │ 208 │ │ │ 209 │ print(f"Loaded training dataset (size: {train_dataset.count()})") │ │ 210 │ │ /tmp/ray/session_2023-06-09_07-20-06_720713_3789/runtime_resources/working_d │ │ ir_files/s3_ray-release-automation-results_working_dirs_air_example_dreamboo │ │ th_finetuning_lkqxnxtopw__anyscale_pkg_ab09cd7a8ba72a9f87697e2489006ca5/drea │ │ mbooth/dataset.py:67 in get_train_dataset │ │ │ │ 64 │ # --- │ │ 65 │ │ │ 66 │ # Now, zip the images up. │ │ ❱ 67 │ final_size = min(instance_dataset.count(), class_dataset.count()) │ │ 68 │ train_dataset = ( │ │ 69 │ │ instance_dataset.limit(final_size) │ │ 70 │ │ .repartition(final_size) │ │ │ │ /home/ray/anaconda3/lib/python3.7/site-packages/ray/data/dataset.py:2159 in │ │ count │ │ │ │ 2156 │ │ │ │ 2157 │ │ return sum( │ │ 2158 │ │ │ ray.get( │ │ ❱ 2159 │ │ │ │ [get_num_rows.remote(block) for block in self.get_int │ │ 2160 │ │ │ ) │ │ 2161 │ │ ) │ │ 2162 │ │ │ │ /home/ray/anaconda3/lib/python3.7/site-packages/ray/data/dataset.py:4006 in │ │ get_internal_block_refs │ │ │ │ 4003 │ │ Returns: │ │ 4004 │ │ │ A list of references to this dataset's blocks. │ │ 4005 │ │ """ │ │ ❱ 4006 │ │ blocks = self._plan.execute().get_blocks() │ │ 4007 │ │ self._synchronize_progress_bar() │ │ 4008 │ │ return blocks │ │ 4009 │ │ │ │ /home/ray/anaconda3/lib/python3.7/site-packages/ray/data/_internal/plan.py:5 │ │ 76 in execute │ │ │ │ 573 │ │ │ │ │ self, │ │ 574 │ │ │ │ │ allow_clear_input_blocks=allow_clear_input_blocks │ │ 575 │ │ │ │ │ dataset_uuid=self._dataset_uuid, │ │ ❱ 576 │ │ │ │ │ preserve_order=preserve_order, │ │ 577 │ │ │ │ ) │ │ 578 │ │ │ │ # TODO(ekl) we shouldn't need to set this in the futu │ │ 579 │ │ │ │ # to a fully lazy execution model, unless .materializ │ │ │ │ /home/ray/anaconda3/lib/python3.7/site-packages/ray/data/_internal/execution │ │ /legacy_compat.py:121 in execute_to_legacy_block_list │ │ │ │ 118 │ │ preserve_order, │ │ 119 │ ) │ │ 120 │ bundles = executor.execute(dag, initial_stats=stats) │ │ ❱ 121 │ block_list = _bundles_to_block_list(bundles) │ │ 122 │ # Set the stats UUID after execution finishes. │ │ 123 │ _set_stats_uuid_recursive(executor.get_stats(), dataset_uuid) │ │ 124 │ return block_list │ │ │ │ /home/ray/anaconda3/lib/python3.7/site-packages/ray/data/_internal/execution │ │ /legacy_compat.py:355 in _bundles_to_block_list │ │ │ │ 352 def _bundles_to_block_list(bundles: Iterator[RefBundle]) -> BlockList: │ │ 353 │ blocks, metadata = [], [] │ │ 354 │ owns_blocks = True │ │ ❱ 355 │ for ref_bundle in bundles: │ │ 356 │ │ if not ref_bundle.owns_blocks: │ │ 357 │ │ │ owns_blocks = False │ │ 358 │ │ for block, meta in ref_bundle.blocks: │ │ │ │ /home/ray/anaconda3/lib/python3.7/site-packages/ray/data/_internal/execution │ │ /interfaces.py:520 in __next__ │ │ │ │ 517 │ │ return next(self._it) │ │ 518 │ │ │ 519 │ def __next__(self) -> RefBundle: │ │ ❱ 520 │ │ return self.get_next() │ │ 521 │ │ 522 │ │ 523 class Executor: │ │ │ │ /home/ray/anaconda3/lib/python3.7/site-packages/ray/data/_internal/execution │ │ /streaming_executor.py:128 in get_next │ │ │ │ 125 │ │ │ │ │ │ else: │ │ 126 │ │ │ │ │ │ │ raise StopIteration │ │ 127 │ │ │ │ │ elif isinstance(item, Exception): │ │ ❱ 128 │ │ │ │ │ │ raise item │ │ 129 │ │ │ │ │ else: │ │ 130 │ │ │ │ │ │ # Otherwise return a concrete RefBundle. │ │ 131 │ │ │ │ │ │ if self._outer._global_info: │ │ │ │ /home/ray/anaconda3/lib/python3.7/site-packages/ray/data/_internal/execution │ │ /streaming_executor.py:180 in run │ │ │ │ 177 │ │ """ │ │ 178 │ │ try: │ │ 179 │ │ │ # Run scheduling loop until complete. │ │ ❱ 180 │ │ │ while self._scheduling_loop_step(self._topology) and not s │ │ 181 │ │ │ │ pass │ │ 182 │ │ except Exception as e: │ │ 183 │ │ │ # Propagate it to the result iterator. │ │ │ │ /home/ray/anaconda3/lib/python3.7/site-packages/ray/data/_internal/execution │ │ /streaming_executor.py:228 in _scheduling_loop_step │ │ │ │ 225 │ │ # Note: calling process_completed_tasks() is expensive since i │ │ 226 │ │ # ray.wait() overhead, so make sure to allow multiple dispatch │ │ 227 │ │ # greater parallelism. │ │ ❱ 228 │ │ process_completed_tasks(topology) │ │ 229 │ │ │ │ 230 │ │ # Dispatch as many operators as we can for completed tasks. │ │ 231 │ │ limits = self._get_or_refresh_resource_limits() │ │ │ │ /home/ray/anaconda3/lib/python3.7/site-packages/ray/data/_internal/execution │ │ /streaming_executor_state.py:329 in process_completed_tasks │ │ │ │ 326 │ │ ) │ │ 327 │ │ for ref in completed: │ │ 328 │ │ │ op = active_tasks.pop(ref) │ │ ❱ 329 │ │ │ op.notify_work_completed(ref) │ │ 330 │ │ │ 331 │ # Pull any operator outputs into the streaming op state. │ │ 332 │ for op, op_state in topology.items(): │ │ │ │ /home/ray/anaconda3/lib/python3.7/site-packages/ray/data/_internal/execution │ │ /operators/task_pool_map_operator.py:65 in notify_work_completed │ │ │ │ 62 │ │ │ 63 │ def notify_work_completed(self, ref: ObjectRef[ObjectRefGenerator] │ │ 64 │ │ task: _TaskState = self._tasks.pop(ref) │ │ ❱ 65 │ │ task.output = self._map_ref_to_ref_bundle(ref) │ │ 66 │ │ self._handle_task_done(task) │ │ 67 │ │ │ 68 │ def shutdown(self): │ │ │ │ /home/ray/anaconda3/lib/python3.7/site-packages/ray/data/_internal/execution │ │ /operators/map_operator.py:331 in _map_ref_to_ref_bundle │ │ │ │ 328 │ │ This function blocks on the completion of the underlying gener │ │ 329 │ │ ray.get(). │ │ 330 │ │ """ │ │ ❱ 331 │ │ all_refs = list(ray.get(ref)) │ │ 332 │ │ del ref │ │ 333 │ │ block_refs = all_refs[:-1] │ │ 334 │ │ block_metas = ray.get(all_refs[-1]) │ │ │ │ /home/ray/anaconda3/lib/python3.7/site-packages/ray/_private/auto_init_hook. │ │ py:18 in auto_init_wrapper │ │ │ │ 15 │ @wraps(fn) │ │ 16 │ def auto_init_wrapper(*args, **kwargs): │ │ 17 │ │ auto_init_ray() │ │ ❱ 18 │ │ return fn(*args, **kwargs) │ │ 19 │ │ │ 20 │ return auto_init_wrapper │ │ 21 │ │ │ │ /home/ray/anaconda3/lib/python3.7/site-packages/ray/_private/client_mode_hoo │ │ k.py:103 in wrapper │ │ │ │ 100 │ │ │ # we only convert init function if RAY_CLIENT_MODE=1 │ │ 101 │ │ │ if func.__name__ != "init" or is_client_mode_enabled_by_de │ │ 102 │ │ │ │ return getattr(ray, func.__name__)(*args, **kwargs) │ │ ❱ 103 │ │ return func(*args, **kwargs) │ │ 104 │ │ │ 105 │ return wrapper │ │ 106 │ │ │ │ /home/ray/anaconda3/lib/python3.7/site-packages/ray/_private/worker.py:2540 │ │ in get │ │ │ │ 2537 │ │ │ │ if isinstance(value, ray.exceptions.ObjectLostError): │ │ 2538 │ │ │ │ │ worker.core_worker.dump_object_store_memory_usage │ │ 2539 │ │ │ │ if isinstance(value, RayTaskError): │ │ ❱ 2540 │ │ │ │ │ raise value.as_instanceof_cause() │ │ 2541 │ │ │ │ else: │ │ 2542 │ │ │ │ │ raise value │ │ 2543 │ ╰──────────────────────────────────────────────────────────────────────────────╯ RayTaskError(TypeError): ray::ReadImage->MapBatches(<lambda>)->TorchVisionPr eprocessor->MapBatches(process_batch)() (pid=4711, ip=10.0.6.83) File "/home/ray/anaconda3/lib/python3.7/site-packages/ray/data/_internal/execu tion/operators/map_operator.py", line 389, in _map_task for b_out in fn(iter(blocks), ctx): File "/home/ray/anaconda3/lib/python3.7/site-packages/ray/data/_internal/execu tion/legacy_compat.py", line 305, in do_map yield from block_fn(blocks, ctx, *fn_args, **fn_kwargs) File "/home/ray/anaconda3/lib/python3.7/site-packages/ray/data/_internal/plann er/map_batches.py", line 117, in fn for batch in formatted_batch_iter: File "/home/ray/anaconda3/lib/python3.7/site-packages/ray/data/_internal/block _batching/block_batching.py", line 156, in batch_blocks for formatted_batch in batch_iter: File "/home/ray/anaconda3/lib/python3.7/site-packages/ray/data/_internal/block _batching/block_batching.py", line 152, in _iterator_fn yield from batch_iter File "/home/ray/anaconda3/lib/python3.7/site-packages/ray/data/_internal/block _batching/util.py", line 184, in extract_data_from_batch for batch in batch_iter: File "/home/ray/anaconda3/lib/python3.7/site-packages/ray/data/_internal/block _batching/util.py", line 158, in format_batches for batch in block_iter: File "/home/ray/anaconda3/lib/python3.7/site-packages/ray/data/_internal/block _batching/util.py", line 117, in blocks_to_batches for block in block_iter: File "/home/ray/anaconda3/lib/python3.7/site-packages/ray/data/_internal/plann er/map_batches.py", line 117, in fn for batch in formatted_batch_iter: File "/home/ray/anaconda3/lib/python3.7/site-packages/ray/data/_internal/block _batching/block_batching.py", line 156, in batch_blocks for formatted_batch in batch_iter: File "/home/ray/anaconda3/lib/python3.7/site-packages/ray/data/_internal/block _batching/block_batching.py", line 152, in _iterator_fn yield from batch_iter File "/home/ray/anaconda3/lib/python3.7/site-packages/ray/data/_internal/block _batching/util.py", line 184, in extract_data_from_batch for batch in batch_iter: File "/home/ray/anaconda3/lib/python3.7/site-packages/ray/data/_internal/block _batching/util.py", line 158, in format_batches for batch in block_iter: File "/home/ray/anaconda3/lib/python3.7/site-packages/ray/data/_internal/block _batching/util.py", line 117, in blocks_to_batches for block in block_iter: File "/home/ray/anaconda3/lib/python3.7/site-packages/ray/data/_internal/plann er/map_batches.py", line 118, in fn yield from process_next_batch(batch) File "/home/ray/anaconda3/lib/python3.7/site-packages/ray/data/_internal/plann er/map_batches.py", line 79, in process_next_batch batch = batch_fn(batch, *fn_args, **fn_kwargs) File "/tmp/ray/session_2023-06-09_07-20-06_720713_3789/runtime_resources/worki ng_dir_files/s3_ray-release-automation-results_working_dirs_air_example_dreamboo th_finetuning_lkqxnxtopw__anyscale_pkg_ab09cd7a8ba72a9f87697e2489006ca5/dreamboo th/dataset.py", line 22, in <lambda> lambda df: pd.concat([df] * dup_times) File "/home/ray/anaconda3/lib/python3.7/site-packages/pandas/util/_decorators.py", line 311, in wrapper return func(*args, **kwargs) File "/home/ray/anaconda3/lib/python3.7/site-packages/pandas/core/reshape/concat.py", line 304, in concat sort=sort, File "/home/ray/anaconda3/lib/python3.7/site-packages/pandas/core/reshape/concat.py", line 384, in __init__ raise TypeError(msg) TypeError: cannot concatenate object of type '<class 'dict'>'; only Series and DataFrame objs are valid ```
1.0
[release/air] `air_example_dreambooth_finetuning.aws` is failing - This test is marked as unstable, which is why it doesn't show up on the OSSCI dashboard. * [Job link](https://console.anyscale-staging.com/o/anyscale-internal/jobs/prodjob_e2abhvzwlavazhugqam2a3ywvx) * [Buildkite](https://buildkite.com/ray-project/release-tests-branch/builds/1773#01889dc2-e43d-4a21-b967-9a65add90e28) Error log: ``` ╭───────────────────── Traceback (most recent call last) ──────────────────────╮ │ │ │ /tmp/ray/session_2023-06-09_07-20-06_720713_3789/runtime_resources/working_d │ │ ir_files/s3_ray-release-automation-results_working_dirs_air_example_dreamboo │ │ th_finetuning_lkqxnxtopw__anyscale_pkg_ab09cd7a8ba72a9f87697e2489006ca5/drea │ │ mbooth/train.py:207 in <module> │ │ │ │ 204 │ args = train_arguments().parse_args() │ │ 205 │ │ │ 206 │ # Build training dataset. │ │ ❱ 207 │ train_dataset = get_train_dataset(args) │ │ 208 │ │ │ 209 │ print(f"Loaded training dataset (size: {train_dataset.count()})") │ │ 210 │ │ /tmp/ray/session_2023-06-09_07-20-06_720713_3789/runtime_resources/working_d │ │ ir_files/s3_ray-release-automation-results_working_dirs_air_example_dreamboo │ │ th_finetuning_lkqxnxtopw__anyscale_pkg_ab09cd7a8ba72a9f87697e2489006ca5/drea │ │ mbooth/dataset.py:67 in get_train_dataset │ │ │ │ 64 │ # --- │ │ 65 │ │ │ 66 │ # Now, zip the images up. │ │ ❱ 67 │ final_size = min(instance_dataset.count(), class_dataset.count()) │ │ 68 │ train_dataset = ( │ │ 69 │ │ instance_dataset.limit(final_size) │ │ 70 │ │ .repartition(final_size) │ │ │ │ /home/ray/anaconda3/lib/python3.7/site-packages/ray/data/dataset.py:2159 in │ │ count │ │ │ │ 2156 │ │ │ │ 2157 │ │ return sum( │ │ 2158 │ │ │ ray.get( │ │ ❱ 2159 │ │ │ │ [get_num_rows.remote(block) for block in self.get_int │ │ 2160 │ │ │ ) │ │ 2161 │ │ ) │ │ 2162 │ │ │ │ /home/ray/anaconda3/lib/python3.7/site-packages/ray/data/dataset.py:4006 in │ │ get_internal_block_refs │ │ │ │ 4003 │ │ Returns: │ │ 4004 │ │ │ A list of references to this dataset's blocks. │ │ 4005 │ │ """ │ │ ❱ 4006 │ │ blocks = self._plan.execute().get_blocks() │ │ 4007 │ │ self._synchronize_progress_bar() │ │ 4008 │ │ return blocks │ │ 4009 │ │ │ │ /home/ray/anaconda3/lib/python3.7/site-packages/ray/data/_internal/plan.py:5 │ │ 76 in execute │ │ │ │ 573 │ │ │ │ │ self, │ │ 574 │ │ │ │ │ allow_clear_input_blocks=allow_clear_input_blocks │ │ 575 │ │ │ │ │ dataset_uuid=self._dataset_uuid, │ │ ❱ 576 │ │ │ │ │ preserve_order=preserve_order, │ │ 577 │ │ │ │ ) │ │ 578 │ │ │ │ # TODO(ekl) we shouldn't need to set this in the futu │ │ 579 │ │ │ │ # to a fully lazy execution model, unless .materializ │ │ │ │ /home/ray/anaconda3/lib/python3.7/site-packages/ray/data/_internal/execution │ │ /legacy_compat.py:121 in execute_to_legacy_block_list │ │ │ │ 118 │ │ preserve_order, │ │ 119 │ ) │ │ 120 │ bundles = executor.execute(dag, initial_stats=stats) │ │ ❱ 121 │ block_list = _bundles_to_block_list(bundles) │ │ 122 │ # Set the stats UUID after execution finishes. │ │ 123 │ _set_stats_uuid_recursive(executor.get_stats(), dataset_uuid) │ │ 124 │ return block_list │ │ │ │ /home/ray/anaconda3/lib/python3.7/site-packages/ray/data/_internal/execution │ │ /legacy_compat.py:355 in _bundles_to_block_list │ │ │ │ 352 def _bundles_to_block_list(bundles: Iterator[RefBundle]) -> BlockList: │ │ 353 │ blocks, metadata = [], [] │ │ 354 │ owns_blocks = True │ │ ❱ 355 │ for ref_bundle in bundles: │ │ 356 │ │ if not ref_bundle.owns_blocks: │ │ 357 │ │ │ owns_blocks = False │ │ 358 │ │ for block, meta in ref_bundle.blocks: │ │ │ │ /home/ray/anaconda3/lib/python3.7/site-packages/ray/data/_internal/execution │ │ /interfaces.py:520 in __next__ │ │ │ │ 517 │ │ return next(self._it) │ │ 518 │ │ │ 519 │ def __next__(self) -> RefBundle: │ │ ❱ 520 │ │ return self.get_next() │ │ 521 │ │ 522 │ │ 523 class Executor: │ │ │ │ /home/ray/anaconda3/lib/python3.7/site-packages/ray/data/_internal/execution │ │ /streaming_executor.py:128 in get_next │ │ │ │ 125 │ │ │ │ │ │ else: │ │ 126 │ │ │ │ │ │ │ raise StopIteration │ │ 127 │ │ │ │ │ elif isinstance(item, Exception): │ │ ❱ 128 │ │ │ │ │ │ raise item │ │ 129 │ │ │ │ │ else: │ │ 130 │ │ │ │ │ │ # Otherwise return a concrete RefBundle. │ │ 131 │ │ │ │ │ │ if self._outer._global_info: │ │ │ │ /home/ray/anaconda3/lib/python3.7/site-packages/ray/data/_internal/execution │ │ /streaming_executor.py:180 in run │ │ │ │ 177 │ │ """ │ │ 178 │ │ try: │ │ 179 │ │ │ # Run scheduling loop until complete. │ │ ❱ 180 │ │ │ while self._scheduling_loop_step(self._topology) and not s │ │ 181 │ │ │ │ pass │ │ 182 │ │ except Exception as e: │ │ 183 │ │ │ # Propagate it to the result iterator. │ │ │ │ /home/ray/anaconda3/lib/python3.7/site-packages/ray/data/_internal/execution │ │ /streaming_executor.py:228 in _scheduling_loop_step │ │ │ │ 225 │ │ # Note: calling process_completed_tasks() is expensive since i │ │ 226 │ │ # ray.wait() overhead, so make sure to allow multiple dispatch │ │ 227 │ │ # greater parallelism. │ │ ❱ 228 │ │ process_completed_tasks(topology) │ │ 229 │ │ │ │ 230 │ │ # Dispatch as many operators as we can for completed tasks. │ │ 231 │ │ limits = self._get_or_refresh_resource_limits() │ │ │ │ /home/ray/anaconda3/lib/python3.7/site-packages/ray/data/_internal/execution │ │ /streaming_executor_state.py:329 in process_completed_tasks │ │ │ │ 326 │ │ ) │ │ 327 │ │ for ref in completed: │ │ 328 │ │ │ op = active_tasks.pop(ref) │ │ ❱ 329 │ │ │ op.notify_work_completed(ref) │ │ 330 │ │ │ 331 │ # Pull any operator outputs into the streaming op state. │ │ 332 │ for op, op_state in topology.items(): │ │ │ │ /home/ray/anaconda3/lib/python3.7/site-packages/ray/data/_internal/execution │ │ /operators/task_pool_map_operator.py:65 in notify_work_completed │ │ │ │ 62 │ │ │ 63 │ def notify_work_completed(self, ref: ObjectRef[ObjectRefGenerator] │ │ 64 │ │ task: _TaskState = self._tasks.pop(ref) │ │ ❱ 65 │ │ task.output = self._map_ref_to_ref_bundle(ref) │ │ 66 │ │ self._handle_task_done(task) │ │ 67 │ │ │ 68 │ def shutdown(self): │ │ │ │ /home/ray/anaconda3/lib/python3.7/site-packages/ray/data/_internal/execution │ │ /operators/map_operator.py:331 in _map_ref_to_ref_bundle │ │ │ │ 328 │ │ This function blocks on the completion of the underlying gener │ │ 329 │ │ ray.get(). │ │ 330 │ │ """ │ │ ❱ 331 │ │ all_refs = list(ray.get(ref)) │ │ 332 │ │ del ref │ │ 333 │ │ block_refs = all_refs[:-1] │ │ 334 │ │ block_metas = ray.get(all_refs[-1]) │ │ │ │ /home/ray/anaconda3/lib/python3.7/site-packages/ray/_private/auto_init_hook. │ │ py:18 in auto_init_wrapper │ │ │ │ 15 │ @wraps(fn) │ │ 16 │ def auto_init_wrapper(*args, **kwargs): │ │ 17 │ │ auto_init_ray() │ │ ❱ 18 │ │ return fn(*args, **kwargs) │ │ 19 │ │ │ 20 │ return auto_init_wrapper │ │ 21 │ │ │ │ /home/ray/anaconda3/lib/python3.7/site-packages/ray/_private/client_mode_hoo │ │ k.py:103 in wrapper │ │ │ │ 100 │ │ │ # we only convert init function if RAY_CLIENT_MODE=1 │ │ 101 │ │ │ if func.__name__ != "init" or is_client_mode_enabled_by_de │ │ 102 │ │ │ │ return getattr(ray, func.__name__)(*args, **kwargs) │ │ ❱ 103 │ │ return func(*args, **kwargs) │ │ 104 │ │ │ 105 │ return wrapper │ │ 106 │ │ │ │ /home/ray/anaconda3/lib/python3.7/site-packages/ray/_private/worker.py:2540 │ │ in get │ │ │ │ 2537 │ │ │ │ if isinstance(value, ray.exceptions.ObjectLostError): │ │ 2538 │ │ │ │ │ worker.core_worker.dump_object_store_memory_usage │ │ 2539 │ │ │ │ if isinstance(value, RayTaskError): │ │ ❱ 2540 │ │ │ │ │ raise value.as_instanceof_cause() │ │ 2541 │ │ │ │ else: │ │ 2542 │ │ │ │ │ raise value │ │ 2543 │ ╰──────────────────────────────────────────────────────────────────────────────╯ RayTaskError(TypeError): ray::ReadImage->MapBatches(<lambda>)->TorchVisionPr eprocessor->MapBatches(process_batch)() (pid=4711, ip=10.0.6.83) File "/home/ray/anaconda3/lib/python3.7/site-packages/ray/data/_internal/execu tion/operators/map_operator.py", line 389, in _map_task for b_out in fn(iter(blocks), ctx): File "/home/ray/anaconda3/lib/python3.7/site-packages/ray/data/_internal/execu tion/legacy_compat.py", line 305, in do_map yield from block_fn(blocks, ctx, *fn_args, **fn_kwargs) File "/home/ray/anaconda3/lib/python3.7/site-packages/ray/data/_internal/plann er/map_batches.py", line 117, in fn for batch in formatted_batch_iter: File "/home/ray/anaconda3/lib/python3.7/site-packages/ray/data/_internal/block _batching/block_batching.py", line 156, in batch_blocks for formatted_batch in batch_iter: File "/home/ray/anaconda3/lib/python3.7/site-packages/ray/data/_internal/block _batching/block_batching.py", line 152, in _iterator_fn yield from batch_iter File "/home/ray/anaconda3/lib/python3.7/site-packages/ray/data/_internal/block _batching/util.py", line 184, in extract_data_from_batch for batch in batch_iter: File "/home/ray/anaconda3/lib/python3.7/site-packages/ray/data/_internal/block _batching/util.py", line 158, in format_batches for batch in block_iter: File "/home/ray/anaconda3/lib/python3.7/site-packages/ray/data/_internal/block _batching/util.py", line 117, in blocks_to_batches for block in block_iter: File "/home/ray/anaconda3/lib/python3.7/site-packages/ray/data/_internal/plann er/map_batches.py", line 117, in fn for batch in formatted_batch_iter: File "/home/ray/anaconda3/lib/python3.7/site-packages/ray/data/_internal/block _batching/block_batching.py", line 156, in batch_blocks for formatted_batch in batch_iter: File "/home/ray/anaconda3/lib/python3.7/site-packages/ray/data/_internal/block _batching/block_batching.py", line 152, in _iterator_fn yield from batch_iter File "/home/ray/anaconda3/lib/python3.7/site-packages/ray/data/_internal/block _batching/util.py", line 184, in extract_data_from_batch for batch in batch_iter: File "/home/ray/anaconda3/lib/python3.7/site-packages/ray/data/_internal/block _batching/util.py", line 158, in format_batches for batch in block_iter: File "/home/ray/anaconda3/lib/python3.7/site-packages/ray/data/_internal/block _batching/util.py", line 117, in blocks_to_batches for block in block_iter: File "/home/ray/anaconda3/lib/python3.7/site-packages/ray/data/_internal/plann er/map_batches.py", line 118, in fn yield from process_next_batch(batch) File "/home/ray/anaconda3/lib/python3.7/site-packages/ray/data/_internal/plann er/map_batches.py", line 79, in process_next_batch batch = batch_fn(batch, *fn_args, **fn_kwargs) File "/tmp/ray/session_2023-06-09_07-20-06_720713_3789/runtime_resources/worki ng_dir_files/s3_ray-release-automation-results_working_dirs_air_example_dreamboo th_finetuning_lkqxnxtopw__anyscale_pkg_ab09cd7a8ba72a9f87697e2489006ca5/dreamboo th/dataset.py", line 22, in <lambda> lambda df: pd.concat([df] * dup_times) File "/home/ray/anaconda3/lib/python3.7/site-packages/pandas/util/_decorators.py", line 311, in wrapper return func(*args, **kwargs) File "/home/ray/anaconda3/lib/python3.7/site-packages/pandas/core/reshape/concat.py", line 304, in concat sort=sort, File "/home/ray/anaconda3/lib/python3.7/site-packages/pandas/core/reshape/concat.py", line 384, in __init__ raise TypeError(msg) TypeError: cannot concatenate object of type '<class 'dict'>'; only Series and DataFrame objs are valid ```
test
air example dreambooth finetuning aws is failing this test is marked as unstable which is why it doesn t show up on the ossci dashboard error log ╭───────────────────── traceback most recent call last ──────────────────────╮ │ │ │ tmp ray session runtime resources working d │ │ ir files ray release automation results working dirs air example dreamboo │ │ th finetuning lkqxnxtopw anyscale pkg drea │ │ mbooth train py in │ │ │ │ │ args train arguments parse args │ │ │ │ │ │ build training dataset │ │ ❱ │ train dataset get train dataset args │ │ │ │ │ │ print f loaded training dataset size train dataset count │ │ │ │ tmp ray session runtime resources working d │ │ ir files ray release automation results working dirs air example dreamboo │ │ th finetuning lkqxnxtopw anyscale pkg drea │ │ mbooth dataset py in get train dataset │ │ │ │ │ │ │ │ │ │ │ now zip the images up │ │ ❱ │ final size min instance dataset count class dataset count │ │ │ train dataset │ │ │ │ instance dataset limit final size │ │ │ │ repartition final size │ │ │ │ home ray lib site packages ray data dataset py in │ │ count │ │ │ │ │ │ │ │ │ │ return sum │ │ │ │ │ ray get │ │ ❱ │ │ │ │ get num rows remote block for block in self get int │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ home ray lib site packages ray data dataset py in │ │ get internal block refs │ │ │ │ │ │ returns │ │ │ │ │ a list of references to this dataset s blocks │ │ │ │ │ │ ❱ │ │ blocks self plan execute get blocks │ │ │ │ self synchronize progress bar │ │ │ │ return blocks │ │ │ │ │ │ home ray lib site packages ray data internal plan py │ │ in execute │ │ │ │ │ │ │ │ │ self │ │ │ │ │ │ │ allow clear input blocks allow clear input blocks │ │ │ │ │ │ │ dataset uuid self dataset uuid │ │ ❱ │ │ │ │ │ preserve order preserve order │ │ │ │ │ │ │ │ │ │ │ │ todo ekl we shouldn t need to set this in the futu │ │ │ │ │ │ to a fully lazy execution model unless materializ │ │ │ │ home ray lib site packages ray data internal execution │ │ legacy compat py in execute to legacy block list │ │ │ │ │ │ preserve order │ │ │ │ │ │ bundles executor execute dag initial stats stats │ │ ❱ │ block list bundles to block list bundles │ │ │ set the stats uuid after execution finishes │ │ │ set stats uuid recursive executor get stats dataset uuid │ │ │ return block list │ │ │ │ home ray lib site packages ray data internal execution │ │ legacy compat py in bundles to block list │ │ │ │ def bundles to block list bundles iterator blocklist │ │ │ blocks metadata │ │ │ owns blocks true │ │ ❱ │ for ref bundle in bundles │ │ │ │ if not ref bundle owns blocks │ │ │ │ │ owns blocks false │ │ │ │ for block meta in ref bundle blocks │ │ │ │ home ray lib site packages ray data internal execution │ │ interfaces py in next │ │ │ │ │ │ return next self it │ │ │ │ │ │ def next self refbundle │ │ ❱ │ │ return self get next │ │ │ │ │ │ class executor │ │ │ │ home ray lib site packages ray data internal execution │ │ streaming executor py in get next │ │ │ │ │ │ │ │ │ │ else │ │ │ │ │ │ │ │ │ raise stopiteration │ │ │ │ │ │ │ elif isinstance item exception │ │ ❱ │ │ │ │ │ │ raise item │ │ │ │ │ │ │ else │ │ │ │ │ │ │ │ otherwise return a concrete refbundle │ │ │ │ │ │ │ │ if self outer global info │ │ │ │ home ray lib site packages ray data internal execution │ │ streaming executor py in run │ │ │ │ │ │ │ │ │ │ try │ │ │ │ │ run scheduling loop until complete │ │ ❱ │ │ │ while self scheduling loop step self topology and not s │ │ │ │ │ │ pass │ │ │ │ except exception as e │ │ │ │ │ propagate it to the result iterator │ │ │ │ home ray lib site packages ray data internal execution │ │ streaming executor py in scheduling loop step │ │ │ │ │ │ note calling process completed tasks is expensive since i │ │ │ │ ray wait overhead so make sure to allow multiple dispatch │ │ │ │ greater parallelism │ │ ❱ │ │ process completed tasks topology │ │ │ │ │ │ │ │ dispatch as many operators as we can for completed tasks │ │ │ │ limits self get or refresh resource limits │ │ │ │ home ray lib site packages ray data internal execution │ │ streaming executor state py in process completed tasks │ │ │ │ │ │ │ │ │ │ for ref in completed │ │ │ │ │ op active tasks pop ref │ │ ❱ │ │ │ op notify work completed ref │ │ │ │ │ │ pull any operator outputs into the streaming op state │ │ │ for op op state in topology items │ │ │ │ home ray lib site packages ray data internal execution │ │ operators task pool map operator py in notify work completed │ │ │ │ │ │ │ │ def notify work completed self ref objectref │ │ │ │ task taskstate self tasks pop ref │ │ ❱ │ │ task output self map ref to ref bundle ref │ │ │ │ self handle task done task │ │ │ │ │ │ def shutdown self │ │ │ │ home ray lib site packages ray data internal execution │ │ operators map operator py in map ref to ref bundle │ │ │ │ │ │ this function blocks on the completion of the underlying gener │ │ │ │ ray get │ │ │ │ │ │ ❱ │ │ all refs list ray get ref │ │ │ │ del ref │ │ │ │ block refs all refs │ │ │ │ block metas ray get all refs │ │ │ │ home ray lib site packages ray private auto init hook │ │ py in auto init wrapper │ │ │ │ │ wraps fn │ │ │ def auto init wrapper args kwargs │ │ │ │ auto init ray │ │ ❱ │ │ return fn args kwargs │ │ │ │ │ │ return auto init wrapper │ │ │ │ │ │ home ray lib site packages ray private client mode hoo │ │ k py in wrapper │ │ │ │ │ │ │ we only convert init function if ray client mode │ │ │ │ │ if func name init or is client mode enabled by de │ │ │ │ │ │ return getattr ray func name args kwargs │ │ ❱ │ │ return func args kwargs │ │ │ │ │ │ return wrapper │ │ │ │ │ │ home ray lib site packages ray private worker py │ │ in get │ │ │ │ │ │ │ │ if isinstance value ray exceptions objectlosterror │ │ │ │ │ │ │ worker core worker dump object store memory usage │ │ │ │ │ │ if isinstance value raytaskerror │ │ ❱ │ │ │ │ │ raise value as instanceof cause │ │ │ │ │ │ else │ │ │ │ │ │ │ raise value │ │ │ ╰──────────────────────────────────────────────────────────────────────────────╯ raytaskerror typeerror ray readimage mapbatches torchvisionpr eprocessor mapbatches process batch pid ip file home ray lib site packages ray data internal execu tion operators map operator py line in map task for b out in fn iter blocks ctx file home ray lib site packages ray data internal execu tion legacy compat py line in do map yield from block fn blocks ctx fn args fn kwargs file home ray lib site packages ray data internal plann er map batches py line in fn for batch in formatted batch iter file home ray lib site packages ray data internal block batching block batching py line in batch blocks for formatted batch in batch iter file home ray lib site packages ray data internal block batching block batching py line in iterator fn yield from batch iter file home ray lib site packages ray data internal block batching util py line in extract data from batch for batch in batch iter file home ray lib site packages ray data internal block batching util py line in format batches for batch in block iter file home ray lib site packages ray data internal block batching util py line in blocks to batches for block in block iter file home ray lib site packages ray data internal plann er map batches py line in fn for batch in formatted batch iter file home ray lib site packages ray data internal block batching block batching py line in batch blocks for formatted batch in batch iter file home ray lib site packages ray data internal block batching block batching py line in iterator fn yield from batch iter file home ray lib site packages ray data internal block batching util py line in extract data from batch for batch in batch iter file home ray lib site packages ray data internal block batching util py line in format batches for batch in block iter file home ray lib site packages ray data internal block batching util py line in blocks to batches for block in block iter file home ray lib site packages ray data internal plann er map batches py line in fn yield from process next batch batch file home ray lib site packages ray data internal plann er map batches py line in process next batch batch batch fn batch fn args fn kwargs file tmp ray session runtime resources worki ng dir files ray release automation results working dirs air example dreamboo th finetuning lkqxnxtopw anyscale pkg dreamboo th dataset py line in lambda df pd concat dup times file home ray lib site packages pandas util decorators py line in wrapper return func args kwargs file home ray lib site packages pandas core reshape concat py line in concat sort sort file home ray lib site packages pandas core reshape concat py line in init raise typeerror msg typeerror cannot concatenate object of type only series and dataframe objs are valid
1
159,286
12,474,192,780
IssuesEvent
2020-05-29 09:12:59
aliasrobotics/RVD
https://api.github.com/repos/aliasrobotics/RVD
opened
Use of possibly insecure function - consider using safer ast., /opt/ros_noetic_ws/src/dynamic_reconfigure/src/dynamic_reconfigure/parameter_generator.py:352
bandit bug static analysis testing triage
```yaml { "id": 1, "title": "Use of possibly insecure function - consider using safer ast., /opt/ros_noetic_ws/src/dynamic_reconfigure/src/dynamic_reconfigure/parameter_generator.py:352", "type": "bug", "description": "HIGH confidence of MEDIUM severity bug. Use of possibly insecure function - consider using safer ast.literal_eval. at /opt/ros_noetic_ws/src/dynamic_reconfigure/src/dynamic_reconfigure/parameter_generator.py:352 See links for more info on the bug.", "cwe": "None", "cve": "None", "keywords": [ "bandit", "bug", "static analysis", "testing", "triage", "bug" ], "system": "", "vendor": null, "severity": { "rvss-score": 0, "rvss-vector": "", "severity-description": "", "cvss-score": 0, "cvss-vector": "" }, "links": "", "flaw": { "phase": "testing", "specificity": "subject-specific", "architectural-location": "application-specific", "application": "N/A", "subsystem": "N/A", "package": "N/A", "languages": "None", "date-detected": "2020-05-29 (09:12)", "detected-by": "Alias Robotics", "detected-by-method": "testing static", "date-reported": "2020-05-29 (09:12)", "reported-by": "Alias Robotics", "reported-by-relationship": "automatic", "issue": "", "reproducibility": "always", "trace": "/opt/ros_noetic_ws/src/dynamic_reconfigure/src/dynamic_reconfigure/parameter_generator.py:352", "reproduction": "See artifacts below (if available)", "reproduction-image": "" }, "exploitation": { "description": "", "exploitation-image": "", "exploitation-vector": "" }, "mitigation": { "description": "", "pull-request": "", "date-mitigation": "" } } ```
1.0
Use of possibly insecure function - consider using safer ast., /opt/ros_noetic_ws/src/dynamic_reconfigure/src/dynamic_reconfigure/parameter_generator.py:352 - ```yaml { "id": 1, "title": "Use of possibly insecure function - consider using safer ast., /opt/ros_noetic_ws/src/dynamic_reconfigure/src/dynamic_reconfigure/parameter_generator.py:352", "type": "bug", "description": "HIGH confidence of MEDIUM severity bug. Use of possibly insecure function - consider using safer ast.literal_eval. at /opt/ros_noetic_ws/src/dynamic_reconfigure/src/dynamic_reconfigure/parameter_generator.py:352 See links for more info on the bug.", "cwe": "None", "cve": "None", "keywords": [ "bandit", "bug", "static analysis", "testing", "triage", "bug" ], "system": "", "vendor": null, "severity": { "rvss-score": 0, "rvss-vector": "", "severity-description": "", "cvss-score": 0, "cvss-vector": "" }, "links": "", "flaw": { "phase": "testing", "specificity": "subject-specific", "architectural-location": "application-specific", "application": "N/A", "subsystem": "N/A", "package": "N/A", "languages": "None", "date-detected": "2020-05-29 (09:12)", "detected-by": "Alias Robotics", "detected-by-method": "testing static", "date-reported": "2020-05-29 (09:12)", "reported-by": "Alias Robotics", "reported-by-relationship": "automatic", "issue": "", "reproducibility": "always", "trace": "/opt/ros_noetic_ws/src/dynamic_reconfigure/src/dynamic_reconfigure/parameter_generator.py:352", "reproduction": "See artifacts below (if available)", "reproduction-image": "" }, "exploitation": { "description": "", "exploitation-image": "", "exploitation-vector": "" }, "mitigation": { "description": "", "pull-request": "", "date-mitigation": "" } } ```
test
use of possibly insecure function consider using safer ast opt ros noetic ws src dynamic reconfigure src dynamic reconfigure parameter generator py yaml id title use of possibly insecure function consider using safer ast opt ros noetic ws src dynamic reconfigure src dynamic reconfigure parameter generator py type bug description high confidence of medium severity bug use of possibly insecure function consider using safer ast literal eval at opt ros noetic ws src dynamic reconfigure src dynamic reconfigure parameter generator py see links for more info on the bug cwe none cve none keywords bandit bug static analysis testing triage bug system vendor null severity rvss score rvss vector severity description cvss score cvss vector links flaw phase testing specificity subject specific architectural location application specific application n a subsystem n a package n a languages none date detected detected by alias robotics detected by method testing static date reported reported by alias robotics reported by relationship automatic issue reproducibility always trace opt ros noetic ws src dynamic reconfigure src dynamic reconfigure parameter generator py reproduction see artifacts below if available reproduction image exploitation description exploitation image exploitation vector mitigation description pull request date mitigation
1
348,786
31,718,195,945
IssuesEvent
2023-09-10 05:03:28
hyperledger/cacti
https://api.github.com/repos/hyperledger/cacti
opened
test(cmd-api-server): fix CVE-2023-37903 - vm2 Sandbox Escape vulnerability
dependencies Security Tests P2
### Description CVE ID: CVE-2023-37903 GHSA ID: GHSA-g644-9gfx-q4q4 [See advisory in GitHub Advisory Database](https://github.com/advisories/GHSA-g644-9gfx-q4q4) https://github.com/hyperledger/cacti/security/dependabot/714
1.0
test(cmd-api-server): fix CVE-2023-37903 - vm2 Sandbox Escape vulnerability - ### Description CVE ID: CVE-2023-37903 GHSA ID: GHSA-g644-9gfx-q4q4 [See advisory in GitHub Advisory Database](https://github.com/advisories/GHSA-g644-9gfx-q4q4) https://github.com/hyperledger/cacti/security/dependabot/714
test
test cmd api server fix cve sandbox escape vulnerability description cve id cve ghsa id ghsa
1
15,793
3,482,896,820
IssuesEvent
2015-12-30 05:35:09
sass/libsass
https://api.github.com/repos/sass/libsass
opened
Regression in variable scoping causing segfault
Bug - Confirmed Dev - Test Written Release - Blocker
@mgreter #1748 introduced a regression with variable scoping / environments. ``` @function foo($value) { $a: bar($value); @debug($a); @debug($value); @return null; } @function bar($list) { @while (true) { @return true; } } $map: ('a': 1, 'b': 2, 'c': 3); $b: foo($map); ``` Ruby Sass ``` test.scss:5 DEBUG: true test.scss:6 DEBUG: ("a": 1, "b": 2, "c": 3) ``` LibSass ``` /Users/michael/Projects/Sass/libsass/test.scss:5 DEBUG: true [1] 77502 segmentation fault /Users/michael/Projects/Sass/sassc/bin/sassc test.scss ```
1.0
Regression in variable scoping causing segfault - @mgreter #1748 introduced a regression with variable scoping / environments. ``` @function foo($value) { $a: bar($value); @debug($a); @debug($value); @return null; } @function bar($list) { @while (true) { @return true; } } $map: ('a': 1, 'b': 2, 'c': 3); $b: foo($map); ``` Ruby Sass ``` test.scss:5 DEBUG: true test.scss:6 DEBUG: ("a": 1, "b": 2, "c": 3) ``` LibSass ``` /Users/michael/Projects/Sass/libsass/test.scss:5 DEBUG: true [1] 77502 segmentation fault /Users/michael/Projects/Sass/sassc/bin/sassc test.scss ```
test
regression in variable scoping causing segfault mgreter introduced a regression with variable scoping environments function foo value a bar value debug a debug value return null function bar list while true return true map a b c b foo map ruby sass test scss debug true test scss debug a b c libsass users michael projects sass libsass test scss debug true segmentation fault users michael projects sass sassc bin sassc test scss
1
153,061
12,133,228,009
IssuesEvent
2020-04-23 08:41:09
kwk/test-llvm-bz-import-5
https://api.github.com/repos/kwk/test-llvm-bz-import-5
opened
NightlyTester should not submit report if error in script occured.
BZ-BUG-STATUS: NEW Test Suite/Nightly Tester dummy import from bugzilla
This issue was imported from Bugzilla https://bugs.llvm.org/show_bug.cgi?id=991.
2.0
NightlyTester should not submit report if error in script occured. - This issue was imported from Bugzilla https://bugs.llvm.org/show_bug.cgi?id=991.
test
nightlytester should not submit report if error in script occured this issue was imported from bugzilla
1
53,602
11,095,364,935
IssuesEvent
2019-12-16 08:56:56
GDQuest/godot-platformer-2d
https://api.github.com/repos/GDQuest/godot-platformer-2d
closed
AI: design a flexible AI system around Steering Behaviors
code structure
Initial proposal by @Razoric480 The AI system is split between 3 facilities, plus a scheduling utility, depending on project and AI complexity: - Decision making - Pathfinding - Steering ## Decision making You've already covered in part with the State machine in the previous course. I don't think it'd really need to be that much more complex for a Metroidvania style enemy - WATCH, ATTACK, FLEE. Though a behaviour tree could be a fun alternative for more complex creatures. Either way, the purpose of the actionable end-node of such a tree would just be to set the appropriate flags in motion for the Steering behaviours. Implementation: In godot, that'd be a tree of decision making nodes - either a state machine holding a few states, or a behaviour tree holding its parameterized branches and actionable leaves. ## Pathfinding Depends on the terrain, and how smart the enemies have to be. Given they're in the air, frequently that might mean 'no pathfinding', but if they're going to head around corners, then yeah, you'd need something. **A star** is the the classic solution. Split your level into a graph and run a heuristic driven path through it. You can also go for a **hierarchical a star** if you expect the AI to do some very large sweeping paths from one end of the map to the other (this is where you have multiple levels, top, more coarse level representations, and more granular levels below. For example, top level is a bunch of interconnected cities, with the level below that being the inside of the city, and the level below _that_ being inside individual buildings.) **Heatmap** as you've called it, or a repulsion/attraction, field flow, etc. I've seen it with quite a few names. Your gameworld is split into a grid, and each of the cells contains a vector pointing to where an entity has to go to reach the goal. The only issue with it is that it doesn't really scale all that well when the 'target' direction is a player, because the field has to be recalculated when they move. Though this can be mitigated by having the target be the 'area' the player is in, and the AI is then expected to move in a straight line once they get there - then you only recalculate when they change rooms. Or, if we're diving into C++ and threads, we can probably afford to recalculate it on the fly, depending on the complexity of any given environment. The big _advantage_ is that all an entity needs to do to pathfind is to check which cell they're in and request the direction they should be moving. Then you can have thousands of entities move extremely cheaply - a swarm of locusts, or pathfinding particles. Nothing stops you from having multiple pathfinding systems, then again, based on the entity's needs and complexity. Implementation: In Godot, they'd both live as an over-node that has access to level data. ## Steering This is where the actual action is calculated, and is the most modular part. The behaviour is passed the information it's going to need (the actor it belongs to, its direction, acceleration, position, the target position, acceleration, etc), it does some math, and out pops a linear vector and an angular rotation - this is where the entity feels it has to go and/or turn. The actual movement code takes that vector and does the actual movement. You can then have an inherited system with a common 'calculate' method, and you can prioritize (move away from imminent obstacle) and/or blend them together (a Pursue behaviour AND a turn-towards-target behaviour.) Implementation: In Godot, that'd also be a tree of nodes, next to the decision making tree. Could have an AI scene for each AI types that contains decision making and steering trees, and just re-use it for every enemy of that type. Godot is nice like that. ## Scheduling AI can get expensive. The bigger the levels, the bigger the maps, the more cells, targets, behaviours, and entities you have, the longer the whole thing can take. Threading can help, for sure, but another solution is to only iterate over how many entities you've got the time budget for. Instead of just iterating over each entity, you create a job that maintains a state until it's done. You tell it to run for a maximum of 1, 2, 6 milliseconds, and when its time is up, if it isn't done, it puts a bookmark where it left off, and next frame, it'll resume until it's done or it runs out of time again. Until an entity has had its recalculation completed, it can use its last result.
1.0
AI: design a flexible AI system around Steering Behaviors - Initial proposal by @Razoric480 The AI system is split between 3 facilities, plus a scheduling utility, depending on project and AI complexity: - Decision making - Pathfinding - Steering ## Decision making You've already covered in part with the State machine in the previous course. I don't think it'd really need to be that much more complex for a Metroidvania style enemy - WATCH, ATTACK, FLEE. Though a behaviour tree could be a fun alternative for more complex creatures. Either way, the purpose of the actionable end-node of such a tree would just be to set the appropriate flags in motion for the Steering behaviours. Implementation: In godot, that'd be a tree of decision making nodes - either a state machine holding a few states, or a behaviour tree holding its parameterized branches and actionable leaves. ## Pathfinding Depends on the terrain, and how smart the enemies have to be. Given they're in the air, frequently that might mean 'no pathfinding', but if they're going to head around corners, then yeah, you'd need something. **A star** is the the classic solution. Split your level into a graph and run a heuristic driven path through it. You can also go for a **hierarchical a star** if you expect the AI to do some very large sweeping paths from one end of the map to the other (this is where you have multiple levels, top, more coarse level representations, and more granular levels below. For example, top level is a bunch of interconnected cities, with the level below that being the inside of the city, and the level below _that_ being inside individual buildings.) **Heatmap** as you've called it, or a repulsion/attraction, field flow, etc. I've seen it with quite a few names. Your gameworld is split into a grid, and each of the cells contains a vector pointing to where an entity has to go to reach the goal. The only issue with it is that it doesn't really scale all that well when the 'target' direction is a player, because the field has to be recalculated when they move. Though this can be mitigated by having the target be the 'area' the player is in, and the AI is then expected to move in a straight line once they get there - then you only recalculate when they change rooms. Or, if we're diving into C++ and threads, we can probably afford to recalculate it on the fly, depending on the complexity of any given environment. The big _advantage_ is that all an entity needs to do to pathfind is to check which cell they're in and request the direction they should be moving. Then you can have thousands of entities move extremely cheaply - a swarm of locusts, or pathfinding particles. Nothing stops you from having multiple pathfinding systems, then again, based on the entity's needs and complexity. Implementation: In Godot, they'd both live as an over-node that has access to level data. ## Steering This is where the actual action is calculated, and is the most modular part. The behaviour is passed the information it's going to need (the actor it belongs to, its direction, acceleration, position, the target position, acceleration, etc), it does some math, and out pops a linear vector and an angular rotation - this is where the entity feels it has to go and/or turn. The actual movement code takes that vector and does the actual movement. You can then have an inherited system with a common 'calculate' method, and you can prioritize (move away from imminent obstacle) and/or blend them together (a Pursue behaviour AND a turn-towards-target behaviour.) Implementation: In Godot, that'd also be a tree of nodes, next to the decision making tree. Could have an AI scene for each AI types that contains decision making and steering trees, and just re-use it for every enemy of that type. Godot is nice like that. ## Scheduling AI can get expensive. The bigger the levels, the bigger the maps, the more cells, targets, behaviours, and entities you have, the longer the whole thing can take. Threading can help, for sure, but another solution is to only iterate over how many entities you've got the time budget for. Instead of just iterating over each entity, you create a job that maintains a state until it's done. You tell it to run for a maximum of 1, 2, 6 milliseconds, and when its time is up, if it isn't done, it puts a bookmark where it left off, and next frame, it'll resume until it's done or it runs out of time again. Until an entity has had its recalculation completed, it can use its last result.
non_test
ai design a flexible ai system around steering behaviors initial proposal by the ai system is split between facilities plus a scheduling utility depending on project and ai complexity decision making pathfinding steering decision making you ve already covered in part with the state machine in the previous course i don t think it d really need to be that much more complex for a metroidvania style enemy watch attack flee though a behaviour tree could be a fun alternative for more complex creatures either way the purpose of the actionable end node of such a tree would just be to set the appropriate flags in motion for the steering behaviours implementation in godot that d be a tree of decision making nodes either a state machine holding a few states or a behaviour tree holding its parameterized branches and actionable leaves pathfinding depends on the terrain and how smart the enemies have to be given they re in the air frequently that might mean no pathfinding but if they re going to head around corners then yeah you d need something a star is the the classic solution split your level into a graph and run a heuristic driven path through it you can also go for a hierarchical a star if you expect the ai to do some very large sweeping paths from one end of the map to the other this is where you have multiple levels top more coarse level representations and more granular levels below for example top level is a bunch of interconnected cities with the level below that being the inside of the city and the level below that being inside individual buildings heatmap as you ve called it or a repulsion attraction field flow etc i ve seen it with quite a few names your gameworld is split into a grid and each of the cells contains a vector pointing to where an entity has to go to reach the goal the only issue with it is that it doesn t really scale all that well when the target direction is a player because the field has to be recalculated when they move though this can be mitigated by having the target be the area the player is in and the ai is then expected to move in a straight line once they get there then you only recalculate when they change rooms or if we re diving into c and threads we can probably afford to recalculate it on the fly depending on the complexity of any given environment the big advantage is that all an entity needs to do to pathfind is to check which cell they re in and request the direction they should be moving then you can have thousands of entities move extremely cheaply a swarm of locusts or pathfinding particles nothing stops you from having multiple pathfinding systems then again based on the entity s needs and complexity implementation in godot they d both live as an over node that has access to level data steering this is where the actual action is calculated and is the most modular part the behaviour is passed the information it s going to need the actor it belongs to its direction acceleration position the target position acceleration etc it does some math and out pops a linear vector and an angular rotation this is where the entity feels it has to go and or turn the actual movement code takes that vector and does the actual movement you can then have an inherited system with a common calculate method and you can prioritize move away from imminent obstacle and or blend them together a pursue behaviour and a turn towards target behaviour implementation in godot that d also be a tree of nodes next to the decision making tree could have an ai scene for each ai types that contains decision making and steering trees and just re use it for every enemy of that type godot is nice like that scheduling ai can get expensive the bigger the levels the bigger the maps the more cells targets behaviours and entities you have the longer the whole thing can take threading can help for sure but another solution is to only iterate over how many entities you ve got the time budget for instead of just iterating over each entity you create a job that maintains a state until it s done you tell it to run for a maximum of milliseconds and when its time is up if it isn t done it puts a bookmark where it left off and next frame it ll resume until it s done or it runs out of time again until an entity has had its recalculation completed it can use its last result
0
17,375
3,606,384,885
IssuesEvent
2016-02-04 11:01:39
Geodan/rws-imagine
https://api.github.com/repos/Geodan/rws-imagine
closed
Timeout op eigenschap dialog in de war
bug test please
Als je een aantal eigenschappen kort na elkaar aanraakt dan raakt de timeout van de dialog in de war en zijn somige dialogs nog maar heel kort zichtbaar.
1.0
Timeout op eigenschap dialog in de war - Als je een aantal eigenschappen kort na elkaar aanraakt dan raakt de timeout van de dialog in de war en zijn somige dialogs nog maar heel kort zichtbaar.
test
timeout op eigenschap dialog in de war als je een aantal eigenschappen kort na elkaar aanraakt dan raakt de timeout van de dialog in de war en zijn somige dialogs nog maar heel kort zichtbaar
1
349,713
31,823,795,631
IssuesEvent
2023-09-14 05:50:51
cockroachdb/cockroach
https://api.github.com/repos/cockroachdb/cockroach
opened
sql/tests: TestRandomSyntaxSQLSmith failed
C-test-failure O-robot branch-master release-blocker T-sql-foundations
sql/tests.TestRandomSyntaxSQLSmith [failed](https://teamcity.cockroachdb.com/buildConfiguration/Cockroach_Nightlies_RandomSyntaxTestsBazel/11770371?buildTab=log) with [artifacts](https://teamcity.cockroachdb.com/buildConfiguration/Cockroach_Nightlies_RandomSyntaxTestsBazel/11770371?buildTab=artifacts#/) on master @ [0cde11b885a5e156b970c003505acd081fb4f326](https://github.com/cockroachdb/cockroach/commits/0cde11b885a5e156b970c003505acd081fb4f326): ``` === RUN TestRandomSyntaxSQLSmith test logs left over in: /artifacts/tmp/_tmp/d437d2c847dfedbc4972f231c3331c8e/logTestRandomSyntaxSchemaChangeColumn3824830113 test_log_scope.go:167: test logs captured to: /artifacts/tmp/_tmp/d437d2c847dfedbc4972f231c3331c8e/logTestRandomSyntaxSQLSmith3855995623 test_log_scope.go:81: use -show-logs to present logs inline test_server_shim.go:124: automatically injected virtual cluster under test; see comment at top of test_server_shim.go for details. rsg_test.go:662: SET sql_safe_updates = false;; rsg_test.go:662: SET CLUSTER SETTING sql.stats.automatic_collection.enabled = false;; rsg_test.go:662: SET CLUSTER SETTING sql.stats.histogram_collection.enabled = false;; rsg_test.go:662: CREATE TABLE table1 (col1_0 TSQUERY NULL, col1_1 BIT(49) NOT NULL, col😫1_2 BOX2D, """c%pol1_3" STRING COLLATE en_US NOT NULL, " col1_4" INT4, col1_5 STRING COLLATE en_US, col1_6 BIT(26) NOT NULL, col1_7 INT8 AS (" col1_4" + 1127741478:::INT8) STORED, "\\U00010575col1_8" STRING NULL AS (lower(CAST(col1_0 AS STRING))) STORED, "!col1_9" STRING AS (lower(CAST(col1_5 AS STRING))) STORED, co😙l1_10 INT8 AS (" col1_4" + NULL) VIRTUAL, "col1_\\x7311" STRING NOT NULL AS (lower(CAST(col1_1 AS STRING))) STORED, col1_12 STRING AS (lower(CAST(col1_5 AS STRING))) VIRTUAL, UNIQUE ("""c%pol1_3" ASC, " col1_4", col1_1 ASC, col1_7) STORING (col1_0, col1_6, "!col1_9"), INDEX (col1_1 ASC, col1_5 DESC, col1_7, " col1_4" DESC) STORING (col1_0, col😫1_2, """c%pol1_3", col1_6, "col1_\\x7311") VISIBILITY 0.81, INDEX (lower(CAST(col1_5 AS STRING)) DESC, "col1_\\x7311" DESC, """c%pol1_3" DESC, lower(CAST(col1_0 AS STRING)) DESC, col1_7) STORING (col😫1_2, col1_5, "\\U00010575col1_8") WHERE (table1.co😙l1_10 != (-128):::INT8) OR (table1."!col1_9" < e'\U00002603':::STRING) NOT VISIBLE, FAMILY (col1_0), FAMILY ("col1_\\x7311"), FAMILY (" col1_4", "!col1_9"), FAMILY ("\\U00010575col1_8"), FAMILY ("""c%pol1_3"), FAMILY (col1_6), FAMILY (col1_7, col1_1), FAMILY (col1_5, col😫1_2)); rsg_test.go:662: CREATE TABLE "tab le2" (col2😘_0 INT8 NOT NULL, col2_1 REGROLE NOT NULL, "col2'_2" PG_LSN NOT NULL, col2_3 FLOAT8 NULL, col2_4 BIT(2) NOT NULL, col2_5 STRING NOT NULL AS (lower(CAST(col2_4 AS STRING))) STORED, PRIMARY KEY (col2_4 DESC, col2_1 ASC), UNIQUE (col2_3, col2_4, "col2'_2" ASC, col2_1 DESC) WHERE (("tab le2".col2😘_0 = 0:::INT8) OR ("tab le2".col2_5 >= '"':::STRING)) AND ("tab le2".col2_3 > 1.401298464324817e-45:::FLOAT8), UNIQUE (col2_3, col2_4, col2_5 ASC, (col2_3 + (-0.6883075479578443):::FLOAT8) ASC, col2😘_0, lower(CAST(col2_4 AS STRING)) ASC) STORING ("col2'_2"), INDEX (col2_3 DESC, col2_4 DESC)); rsg_test.go:834: pq: use of partitions requires an enterprise license. see https://cockroachlabs.com/pricing?cluster=3bdb4d86-009d-451e-3692-ca83f20c3c33 for details on how to enable enterprise features panic.go:522: -- test log scope end -- test logs left over in: /artifacts/tmp/_tmp/d437d2c847dfedbc4972f231c3331c8e/logTestRandomSyntaxSQLSmith3855995623 --- FAIL: TestRandomSyntaxSQLSmith (4.11s) ``` <details><summary>Help</summary> <p> See also: [How To Investigate a Go Test Failure \(internal\)](https://cockroachlabs.atlassian.net/l/c/HgfXfJgM) </p> </details> /cc @cockroachdb/sql-foundations <sub> [This test on roachdash](https://roachdash.crdb.dev/?filter=status:open%20t:.*TestRandomSyntaxSQLSmith.*&sort=title+created&display=lastcommented+project) | [Improve this report!](https://github.com/cockroachdb/cockroach/tree/master/pkg/cmd/internal/issues) </sub>
1.0
sql/tests: TestRandomSyntaxSQLSmith failed - sql/tests.TestRandomSyntaxSQLSmith [failed](https://teamcity.cockroachdb.com/buildConfiguration/Cockroach_Nightlies_RandomSyntaxTestsBazel/11770371?buildTab=log) with [artifacts](https://teamcity.cockroachdb.com/buildConfiguration/Cockroach_Nightlies_RandomSyntaxTestsBazel/11770371?buildTab=artifacts#/) on master @ [0cde11b885a5e156b970c003505acd081fb4f326](https://github.com/cockroachdb/cockroach/commits/0cde11b885a5e156b970c003505acd081fb4f326): ``` === RUN TestRandomSyntaxSQLSmith test logs left over in: /artifacts/tmp/_tmp/d437d2c847dfedbc4972f231c3331c8e/logTestRandomSyntaxSchemaChangeColumn3824830113 test_log_scope.go:167: test logs captured to: /artifacts/tmp/_tmp/d437d2c847dfedbc4972f231c3331c8e/logTestRandomSyntaxSQLSmith3855995623 test_log_scope.go:81: use -show-logs to present logs inline test_server_shim.go:124: automatically injected virtual cluster under test; see comment at top of test_server_shim.go for details. rsg_test.go:662: SET sql_safe_updates = false;; rsg_test.go:662: SET CLUSTER SETTING sql.stats.automatic_collection.enabled = false;; rsg_test.go:662: SET CLUSTER SETTING sql.stats.histogram_collection.enabled = false;; rsg_test.go:662: CREATE TABLE table1 (col1_0 TSQUERY NULL, col1_1 BIT(49) NOT NULL, col😫1_2 BOX2D, """c%pol1_3" STRING COLLATE en_US NOT NULL, " col1_4" INT4, col1_5 STRING COLLATE en_US, col1_6 BIT(26) NOT NULL, col1_7 INT8 AS (" col1_4" + 1127741478:::INT8) STORED, "\\U00010575col1_8" STRING NULL AS (lower(CAST(col1_0 AS STRING))) STORED, "!col1_9" STRING AS (lower(CAST(col1_5 AS STRING))) STORED, co😙l1_10 INT8 AS (" col1_4" + NULL) VIRTUAL, "col1_\\x7311" STRING NOT NULL AS (lower(CAST(col1_1 AS STRING))) STORED, col1_12 STRING AS (lower(CAST(col1_5 AS STRING))) VIRTUAL, UNIQUE ("""c%pol1_3" ASC, " col1_4", col1_1 ASC, col1_7) STORING (col1_0, col1_6, "!col1_9"), INDEX (col1_1 ASC, col1_5 DESC, col1_7, " col1_4" DESC) STORING (col1_0, col😫1_2, """c%pol1_3", col1_6, "col1_\\x7311") VISIBILITY 0.81, INDEX (lower(CAST(col1_5 AS STRING)) DESC, "col1_\\x7311" DESC, """c%pol1_3" DESC, lower(CAST(col1_0 AS STRING)) DESC, col1_7) STORING (col😫1_2, col1_5, "\\U00010575col1_8") WHERE (table1.co😙l1_10 != (-128):::INT8) OR (table1."!col1_9" < e'\U00002603':::STRING) NOT VISIBLE, FAMILY (col1_0), FAMILY ("col1_\\x7311"), FAMILY (" col1_4", "!col1_9"), FAMILY ("\\U00010575col1_8"), FAMILY ("""c%pol1_3"), FAMILY (col1_6), FAMILY (col1_7, col1_1), FAMILY (col1_5, col😫1_2)); rsg_test.go:662: CREATE TABLE "tab le2" (col2😘_0 INT8 NOT NULL, col2_1 REGROLE NOT NULL, "col2'_2" PG_LSN NOT NULL, col2_3 FLOAT8 NULL, col2_4 BIT(2) NOT NULL, col2_5 STRING NOT NULL AS (lower(CAST(col2_4 AS STRING))) STORED, PRIMARY KEY (col2_4 DESC, col2_1 ASC), UNIQUE (col2_3, col2_4, "col2'_2" ASC, col2_1 DESC) WHERE (("tab le2".col2😘_0 = 0:::INT8) OR ("tab le2".col2_5 >= '"':::STRING)) AND ("tab le2".col2_3 > 1.401298464324817e-45:::FLOAT8), UNIQUE (col2_3, col2_4, col2_5 ASC, (col2_3 + (-0.6883075479578443):::FLOAT8) ASC, col2😘_0, lower(CAST(col2_4 AS STRING)) ASC) STORING ("col2'_2"), INDEX (col2_3 DESC, col2_4 DESC)); rsg_test.go:834: pq: use of partitions requires an enterprise license. see https://cockroachlabs.com/pricing?cluster=3bdb4d86-009d-451e-3692-ca83f20c3c33 for details on how to enable enterprise features panic.go:522: -- test log scope end -- test logs left over in: /artifacts/tmp/_tmp/d437d2c847dfedbc4972f231c3331c8e/logTestRandomSyntaxSQLSmith3855995623 --- FAIL: TestRandomSyntaxSQLSmith (4.11s) ``` <details><summary>Help</summary> <p> See also: [How To Investigate a Go Test Failure \(internal\)](https://cockroachlabs.atlassian.net/l/c/HgfXfJgM) </p> </details> /cc @cockroachdb/sql-foundations <sub> [This test on roachdash](https://roachdash.crdb.dev/?filter=status:open%20t:.*TestRandomSyntaxSQLSmith.*&sort=title+created&display=lastcommented+project) | [Improve this report!](https://github.com/cockroachdb/cockroach/tree/master/pkg/cmd/internal/issues) </sub>
test
sql tests testrandomsyntaxsqlsmith failed sql tests testrandomsyntaxsqlsmith with on master run testrandomsyntaxsqlsmith test logs left over in artifacts tmp tmp test log scope go test logs captured to artifacts tmp tmp test log scope go use show logs to present logs inline test server shim go automatically injected virtual cluster under test see comment at top of test server shim go for details rsg test go set sql safe updates false rsg test go set cluster setting sql stats automatic collection enabled false rsg test go set cluster setting sql stats histogram collection enabled false rsg test go create table tsquery null bit not null col😫 c string collate en us not null string collate en us bit not null as stored string null as lower cast as string stored string as lower cast as string stored co😙 as null virtual string not null as lower cast as string stored string as lower cast as string virtual unique c asc asc storing index asc desc desc storing col😫 c visibility index lower cast as string desc desc c desc lower cast as string desc storing col😫 where co😙 or e string not visible family family family family family c family family family col😫 rsg test go create table tab 😘 not null regrole not null pg lsn not null null bit not null string not null as lower cast as string stored primary key desc asc unique asc desc where tab 😘 or tab string and tab unique asc asc 😘 lower cast as string asc storing index desc desc rsg test go pq use of partitions requires an enterprise license see for details on how to enable enterprise features panic go test log scope end test logs left over in artifacts tmp tmp fail testrandomsyntaxsqlsmith help see also cc cockroachdb sql foundations
1
287,246
31,830,107,456
IssuesEvent
2023-09-14 10:01:24
Trinadh465/linux-4.1.15_CVE-2022-3564
https://api.github.com/repos/Trinadh465/linux-4.1.15_CVE-2022-3564
opened
CVE-2016-1583 (High) detected in linuxlinux-4.6, linux-stable-rtv4.1.33
Mend: dependency security vulnerability
## CVE-2016-1583 - High Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Libraries - <b>linuxlinux-4.6</b>, <b>linux-stable-rtv4.1.33</b></p></summary> <p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png?' width=19 height=20> Vulnerability Details</summary> <p> The ecryptfs_privileged_open function in fs/ecryptfs/kthread.c in the Linux kernel before 4.6.3 allows local users to gain privileges or cause a denial of service (stack memory consumption) via vectors involving crafted mmap calls for /proc pathnames, leading to recursive pagefault handling. <p>Publish Date: 2016-06-27 <p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2016-1583>CVE-2016-1583</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>7.8</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Local - Attack Complexity: Low - Privileges Required: Low - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: High - Integrity Impact: High - Availability Impact: High </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </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://nvd.nist.gov/vuln/detail/CVE-2016-1583">https://nvd.nist.gov/vuln/detail/CVE-2016-1583</a></p> <p>Release Date: 2016-06-27</p> <p>Fix Resolution: 4.6.3</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-2016-1583 (High) detected in linuxlinux-4.6, linux-stable-rtv4.1.33 - ## CVE-2016-1583 - High Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Libraries - <b>linuxlinux-4.6</b>, <b>linux-stable-rtv4.1.33</b></p></summary> <p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png?' width=19 height=20> Vulnerability Details</summary> <p> The ecryptfs_privileged_open function in fs/ecryptfs/kthread.c in the Linux kernel before 4.6.3 allows local users to gain privileges or cause a denial of service (stack memory consumption) via vectors involving crafted mmap calls for /proc pathnames, leading to recursive pagefault handling. <p>Publish Date: 2016-06-27 <p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2016-1583>CVE-2016-1583</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>7.8</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Local - Attack Complexity: Low - Privileges Required: Low - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: High - Integrity Impact: High - Availability Impact: High </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </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://nvd.nist.gov/vuln/detail/CVE-2016-1583">https://nvd.nist.gov/vuln/detail/CVE-2016-1583</a></p> <p>Release Date: 2016-06-27</p> <p>Fix Resolution: 4.6.3</p> </p> </details> <p></p> *** Step up your Open Source Security Game with Mend [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
non_test
cve high detected in linuxlinux linux stable cve high severity vulnerability vulnerable libraries linuxlinux linux stable vulnerability details the ecryptfs privileged open function in fs ecryptfs kthread c in the linux kernel before allows local users to gain privileges or cause a denial of service stack memory consumption via vectors involving crafted mmap calls for proc pathnames leading to recursive pagefault handling publish date url a href cvss score details base score metrics exploitability metrics attack vector local attack complexity low privileges required low user interaction none scope unchanged impact metrics confidentiality impact high integrity impact high availability impact high for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution step up your open source security game with mend
0
161,189
12,533,511,185
IssuesEvent
2020-06-04 17:44:03
nearprotocol/nearcore
https://api.github.com/repos/nearprotocol/nearcore
closed
Requesting a garbage collected block hangs instead of returning an error
P0 RPC bug testing
According to nightly logs, it started happening after this commit: https://github.com/nearprotocol/nearcore/commit/fd13098a24242f4837cad964bee43fe768472c2f To reproduce, run `python tests/sanity/state_sync.py manytx 250` From `pytest` It will fail at the end, trying to request a block from `get_all_heights`, and timing out. The block is missing because it is garbage collected, but the expectation is that in such a case we would return "Block missing error" (and `get_all_heights` is expecting such an error).
1.0
Requesting a garbage collected block hangs instead of returning an error - According to nightly logs, it started happening after this commit: https://github.com/nearprotocol/nearcore/commit/fd13098a24242f4837cad964bee43fe768472c2f To reproduce, run `python tests/sanity/state_sync.py manytx 250` From `pytest` It will fail at the end, trying to request a block from `get_all_heights`, and timing out. The block is missing because it is garbage collected, but the expectation is that in such a case we would return "Block missing error" (and `get_all_heights` is expecting such an error).
test
requesting a garbage collected block hangs instead of returning an error according to nightly logs it started happening after this commit to reproduce run python tests sanity state sync py manytx from pytest it will fail at the end trying to request a block from get all heights and timing out the block is missing because it is garbage collected but the expectation is that in such a case we would return block missing error and get all heights is expecting such an error
1
158,311
12,412,268,773
IssuesEvent
2020-05-22 10:12:53
aliasrobotics/RVD
https://api.github.com/repos/aliasrobotics/RVD
opened
553]
bug cppcheck static analysis testing triage
```yaml { "id": 1, "title": "553]", "type": "bug", "description": "[src/opencv3/3rdparty/libjpeg/jdmarker.c:556] -> [src/opencv3/3rdparty/libjpeg/jdmarker.c:553]: (warning) Either the condition 'n>=4' is redundant or the array 'cinfo->quant_tbl_ptrs[4]' is accessed at index 4, which is out of bounds.", "cwe": "None", "cve": "None", "keywords": [ "cppcheck", "static analysis", "testing", "triage", "bug" ], "system": "src/opencv3/3rdparty/libjpeg/jdmarker.c", "vendor": null, "severity": { "rvss-score": 0, "rvss-vector": "", "severity-description": "", "cvss-score": 0, "cvss-vector": "" }, "links": "", "flaw": { "phase": "testing", "specificity": "N/A", "architectural-location": "N/A", "application": "N/A", "subsystem": "N/A", "package": "N/A", "languages": "None", "date-detected": "2020-05-22 (10:12)", "detected-by": "Alias Robotics", "detected-by-method": "testing static", "date-reported": "2020-05-22 (10:12)", "reported-by": "Alias Robotics", "reported-by-relationship": "automatic", "issue": "", "reproducibility": "always", "trace": "", "reproduction": "See artifacts below (if available)", "reproduction-image": "gitlab.com/aliasrobotics/offensive/alurity/pipelines/active/pipeline_ros_kinetic/-/jobs/563367426/artifacts/download" }, "exploitation": { "description": "", "exploitation-image": "", "exploitation-vector": "" }, "mitigation": { "description": "", "pull-request": "", "date-mitigation": "" } } ```
1.0
553] - ```yaml { "id": 1, "title": "553]", "type": "bug", "description": "[src/opencv3/3rdparty/libjpeg/jdmarker.c:556] -> [src/opencv3/3rdparty/libjpeg/jdmarker.c:553]: (warning) Either the condition 'n>=4' is redundant or the array 'cinfo->quant_tbl_ptrs[4]' is accessed at index 4, which is out of bounds.", "cwe": "None", "cve": "None", "keywords": [ "cppcheck", "static analysis", "testing", "triage", "bug" ], "system": "src/opencv3/3rdparty/libjpeg/jdmarker.c", "vendor": null, "severity": { "rvss-score": 0, "rvss-vector": "", "severity-description": "", "cvss-score": 0, "cvss-vector": "" }, "links": "", "flaw": { "phase": "testing", "specificity": "N/A", "architectural-location": "N/A", "application": "N/A", "subsystem": "N/A", "package": "N/A", "languages": "None", "date-detected": "2020-05-22 (10:12)", "detected-by": "Alias Robotics", "detected-by-method": "testing static", "date-reported": "2020-05-22 (10:12)", "reported-by": "Alias Robotics", "reported-by-relationship": "automatic", "issue": "", "reproducibility": "always", "trace": "", "reproduction": "See artifacts below (if available)", "reproduction-image": "gitlab.com/aliasrobotics/offensive/alurity/pipelines/active/pipeline_ros_kinetic/-/jobs/563367426/artifacts/download" }, "exploitation": { "description": "", "exploitation-image": "", "exploitation-vector": "" }, "mitigation": { "description": "", "pull-request": "", "date-mitigation": "" } } ```
test
yaml id title type bug description warning either the condition n is redundant or the array cinfo quant tbl ptrs is accessed at index which is out of bounds cwe none cve none keywords cppcheck static analysis testing triage bug system src libjpeg jdmarker c vendor null severity rvss score rvss vector severity description cvss score cvss vector links flaw phase testing specificity n a architectural location n a application n a subsystem n a package n a languages none date detected detected by alias robotics detected by method testing static date reported reported by alias robotics reported by relationship automatic issue reproducibility always trace reproduction see artifacts below if available reproduction image gitlab com aliasrobotics offensive alurity pipelines active pipeline ros kinetic jobs artifacts download exploitation description exploitation image exploitation vector mitigation description pull request date mitigation
1
5,747
5,921,873,973
IssuesEvent
2017-05-23 00:55:17
dotnet/coreclr
https://api.github.com/repos/dotnet/coreclr
closed
Change release/2.0.0 branch auto-upgrade to pull from upstream 2.0.0 branches, not master
area-Infrastructure
Right now, [`DependencyBranch`](https://github.com/dotnet/coreclr/blob/4312dc7ea6f437ebd4071b86600aa043d6ca73da/dependencies.props#L22) in dependencies.props is set to update to `master` builds. It should update to `release/2.0.0` builds, instead. See https://github.com/dotnet/core-setup/pull/2455. We should probably wait to do this until we have successful 2.0.0-branch preview2 builds of each upstream product. /cc @gkhanna79
1.0
Change release/2.0.0 branch auto-upgrade to pull from upstream 2.0.0 branches, not master - Right now, [`DependencyBranch`](https://github.com/dotnet/coreclr/blob/4312dc7ea6f437ebd4071b86600aa043d6ca73da/dependencies.props#L22) in dependencies.props is set to update to `master` builds. It should update to `release/2.0.0` builds, instead. See https://github.com/dotnet/core-setup/pull/2455. We should probably wait to do this until we have successful 2.0.0-branch preview2 builds of each upstream product. /cc @gkhanna79
non_test
change release branch auto upgrade to pull from upstream branches not master right now in dependencies props is set to update to master builds it should update to release builds instead see we should probably wait to do this until we have successful branch builds of each upstream product cc
0
142,455
11,472,949,311
IssuesEvent
2020-02-09 20:16:02
timeforcamp/time-for-camp
https://api.github.com/repos/timeforcamp/time-for-camp
closed
Logo Size Controls
PRIORITY 2 enhancement in progress ready to test
Add the ability for the camp admin to control the size of the rendered logo within the header and banner for both desktop and mobile view.
1.0
Logo Size Controls - Add the ability for the camp admin to control the size of the rendered logo within the header and banner for both desktop and mobile view.
test
logo size controls add the ability for the camp admin to control the size of the rendered logo within the header and banner for both desktop and mobile view
1
308,578
26,614,774,166
IssuesEvent
2023-01-24 05:34:54
arcus-azure/arcus.eventgrid
https://api.github.com/repos/arcus-azure/arcus.eventgrid
opened
Remove unnecessary `NoOpLogger` in `Arcus.EventGrid.Testing`
testing
**Is your feature request related to a problem? Please describe.** Currently, we have a `NoOpLogger` implementation with the same functionality as the built-in `NullLogger` in `Arcus.EventGrid.Testing`. **Describe the solution you'd like** Remove the deprecated `NoOpLogger` in `Arcus.EventGrid.Testing`.
1.0
Remove unnecessary `NoOpLogger` in `Arcus.EventGrid.Testing` - **Is your feature request related to a problem? Please describe.** Currently, we have a `NoOpLogger` implementation with the same functionality as the built-in `NullLogger` in `Arcus.EventGrid.Testing`. **Describe the solution you'd like** Remove the deprecated `NoOpLogger` in `Arcus.EventGrid.Testing`.
test
remove unnecessary nooplogger in arcus eventgrid testing is your feature request related to a problem please describe currently we have a nooplogger implementation with the same functionality as the built in nulllogger in arcus eventgrid testing describe the solution you d like remove the deprecated nooplogger in arcus eventgrid testing
1
351,088
31,934,100,259
IssuesEvent
2023-09-19 09:20:11
unifyai/ivy
https://api.github.com/repos/unifyai/ivy
reopened
Fix Array API linalg.test_matrix_transpose
Array API Sub Task Failing Test ToDo_internal
| | | |---|---| |torch|<a href="https://github.com/unifyai/ivy/actions/runs/5332885227/jobs/9662657739"><img src=https://img.shields.io/badge/-failure-red></a> |jax|<a href="https://github.com/unifyai/ivy/actions/runs/5332885227/jobs/9662657739"><img src=https://img.shields.io/badge/-failure-red></a> |numpy|<a href="https://github.com/unifyai/ivy/actions/runs/5332885227/jobs/9662657739"><img src=https://img.shields.io/badge/-failure-red></a> |tensorflow|<a href="https://github.com/unifyai/ivy/actions/runs/5332885227/jobs/9662657739"><img src=https://img.shields.io/badge/-failure-red></a>
1.0
Fix Array API linalg.test_matrix_transpose - | | | |---|---| |torch|<a href="https://github.com/unifyai/ivy/actions/runs/5332885227/jobs/9662657739"><img src=https://img.shields.io/badge/-failure-red></a> |jax|<a href="https://github.com/unifyai/ivy/actions/runs/5332885227/jobs/9662657739"><img src=https://img.shields.io/badge/-failure-red></a> |numpy|<a href="https://github.com/unifyai/ivy/actions/runs/5332885227/jobs/9662657739"><img src=https://img.shields.io/badge/-failure-red></a> |tensorflow|<a href="https://github.com/unifyai/ivy/actions/runs/5332885227/jobs/9662657739"><img src=https://img.shields.io/badge/-failure-red></a>
test
fix array api linalg test matrix transpose torch a href src jax a href src numpy a href src tensorflow a href src
1
59,542
6,655,209,825
IssuesEvent
2017-09-29 15:32:31
pkrog/biodb
https://api.github.com/repos/pkrog/biodb
opened
Check min.rel.int option in Massbank
massbank test
In `searchMZRange` and `searchMzTol`, check that `min.rel.int` is passed to the webservice with the right scale (percentage or per mille) and right type (integer or numeric).
1.0
Check min.rel.int option in Massbank - In `searchMZRange` and `searchMzTol`, check that `min.rel.int` is passed to the webservice with the right scale (percentage or per mille) and right type (integer or numeric).
test
check min rel int option in massbank in searchmzrange and searchmztol check that min rel int is passed to the webservice with the right scale percentage or per mille and right type integer or numeric
1
119,033
12,004,359,640
IssuesEvent
2020-04-09 11:23:47
umairnazar/odctmis
https://api.github.com/repos/umairnazar/odctmis
reopened
The test cases and test regimes required.
Advisor Dashboard PO Dashboard Super Admin Dashboard Trainee Dashboard Trainer Dashboard Training Wizard documentation
You are required to share all the test cases performed before moving the code to the production server.
1.0
The test cases and test regimes required. - You are required to share all the test cases performed before moving the code to the production server.
non_test
the test cases and test regimes required you are required to share all the test cases performed before moving the code to the production server
0
477,609
13,765,234,754
IssuesEvent
2020-10-07 13:09:55
sButtons/sbuttons
https://api.github.com/repos/sButtons/sbuttons
closed
Better layout for basic/rounded/block buttons
Priority: High enhancement website
Basic/Rounded/Block buttons should be split into tabs or something similar. This is necessary as the website is getting longer with every button added.
1.0
Better layout for basic/rounded/block buttons - Basic/Rounded/Block buttons should be split into tabs or something similar. This is necessary as the website is getting longer with every button added.
non_test
better layout for basic rounded block buttons basic rounded block buttons should be split into tabs or something similar this is necessary as the website is getting longer with every button added
0
276,489
23,995,137,699
IssuesEvent
2022-09-14 06:51:56
FreeRDP/FreeRDP
https://api.github.com/repos/FreeRDP/FreeRDP
closed
/dynamic-resolution does not working.
fixed-waiting-test client
**Describe the bug** After running with /f, /dynamic-resolution does not work when using shortcut keys or float bar to cancel full screen. **To Reproduce** 1. Run xfreerdp command. $ xfreerdp /log-level:DEBUG /f /floatbar:sticky:off,default:hidden,show:always /dynamic-resolution /v:xxx.xxx.xx.x /u:xxxxx 2. Remove the full screen display by manipulating the floatbar (or press ctrl + alt + enter) 3. Resize the window. 4. Automatic resizing does not work.The window size can be adjusted, but the resolution is not changed. **Expected behavior** When the window size is adjusted, I would like the resolution to automatically change to match the window size. **Screenshots** ![screenshot](https://user-images.githubusercontent.com/112925337/188556880-65eb5778-5647-4508-929d-572bbd9863be.png) **Additional context** the problem did not occur in v2.2.0, but has been occurring since v2.3.0. In addition to /f, the problem was also reproduced with /multimon. I am connected to windows 10. Specifically, the following commit was causing the problem: d3ed42a7
1.0
/dynamic-resolution does not working. - **Describe the bug** After running with /f, /dynamic-resolution does not work when using shortcut keys or float bar to cancel full screen. **To Reproduce** 1. Run xfreerdp command. $ xfreerdp /log-level:DEBUG /f /floatbar:sticky:off,default:hidden,show:always /dynamic-resolution /v:xxx.xxx.xx.x /u:xxxxx 2. Remove the full screen display by manipulating the floatbar (or press ctrl + alt + enter) 3. Resize the window. 4. Automatic resizing does not work.The window size can be adjusted, but the resolution is not changed. **Expected behavior** When the window size is adjusted, I would like the resolution to automatically change to match the window size. **Screenshots** ![screenshot](https://user-images.githubusercontent.com/112925337/188556880-65eb5778-5647-4508-929d-572bbd9863be.png) **Additional context** the problem did not occur in v2.2.0, but has been occurring since v2.3.0. In addition to /f, the problem was also reproduced with /multimon. I am connected to windows 10. Specifically, the following commit was causing the problem: d3ed42a7
test
dynamic resolution does not working describe the bug after running with f dynamic resolution does not work when using shortcut keys or float bar to cancel full screen to reproduce run xfreerdp command xfreerdp log level debug f floatbar sticky off default hidden show always dynamic resolution v xxx xxx xx x u xxxxx remove the full screen display by manipulating the floatbar or press ctrl alt enter resize the window automatic resizing does not work the window size can be adjusted but the resolution is not changed expected behavior when the window size is adjusted i would like the resolution to automatically change to match the window size screenshots additional context the problem did not occur in but has been occurring since in addition to f the problem was also reproduced with multimon i am connected to windows specifically the following commit was causing the problem
1
506,318
14,662,583,426
IssuesEvent
2020-12-29 07:36:39
PX4/PX4-Autopilot
https://api.github.com/repos/PX4/PX4-Autopilot
closed
PX4 10.0.1 Stable, Hard Fault in file:armv7-m/up_hardfault.c
bug fmu-v5 priority-critical stale
Hello, I encountered an issue with PX4 1.10.1 Stable where the copter seems to make a 180° flip upside down. I am using a MoCap pose input over MavRos, mapped to the vision pose topic as described in the [tutorial](https://dev.px4.io/v1.10/en/ros/external_position_estimation.html ). The logs indicate that this seems to be a software crash, thus the movement might be a random result due to the underlying error. The Pixhawk 4 gives multiple beeper signals after engaging the killswitch. Both logfiles below show 'Type:Hard Fault in file:armv7-m/up_hardfault.c at line: 148 running task: init' **To Reproduce** Steps to reproduce the behavior: 1. Map the MoCap pose to the vision pose topic 2. Enable the vision pose estimate 3. Start the copter in altitude mode and take off 4. Switch to position mode 5. The copter holds its position stable for ~5 seconds until the described issue occurs **Expected behavior** The copter should hold its position. **Log Files** MoCap at 120Hz, the log indicates I2C3 low on the stack: https://logs.px4.io/plot_app?log=92b60ea2-4b1e-4fac-9402-e1c797494866 MoCap at 30Hz, the log does not point out a clear error but the same issue occurred: https://logs.px4.io/plot_app?log=afa24f21-0f51-42a4-bd2e-9b90ef29b14c **Hardware** Pixhawk 4 Holybro
1.0
PX4 10.0.1 Stable, Hard Fault in file:armv7-m/up_hardfault.c - Hello, I encountered an issue with PX4 1.10.1 Stable where the copter seems to make a 180° flip upside down. I am using a MoCap pose input over MavRos, mapped to the vision pose topic as described in the [tutorial](https://dev.px4.io/v1.10/en/ros/external_position_estimation.html ). The logs indicate that this seems to be a software crash, thus the movement might be a random result due to the underlying error. The Pixhawk 4 gives multiple beeper signals after engaging the killswitch. Both logfiles below show 'Type:Hard Fault in file:armv7-m/up_hardfault.c at line: 148 running task: init' **To Reproduce** Steps to reproduce the behavior: 1. Map the MoCap pose to the vision pose topic 2. Enable the vision pose estimate 3. Start the copter in altitude mode and take off 4. Switch to position mode 5. The copter holds its position stable for ~5 seconds until the described issue occurs **Expected behavior** The copter should hold its position. **Log Files** MoCap at 120Hz, the log indicates I2C3 low on the stack: https://logs.px4.io/plot_app?log=92b60ea2-4b1e-4fac-9402-e1c797494866 MoCap at 30Hz, the log does not point out a clear error but the same issue occurred: https://logs.px4.io/plot_app?log=afa24f21-0f51-42a4-bd2e-9b90ef29b14c **Hardware** Pixhawk 4 Holybro
non_test
stable hard fault in file m up hardfault c hello i encountered an issue with stable where the copter seems to make a ° flip upside down i am using a mocap pose input over mavros mapped to the vision pose topic as described in the the logs indicate that this seems to be a software crash thus the movement might be a random result due to the underlying error the pixhawk gives multiple beeper signals after engaging the killswitch both logfiles below show type hard fault in file m up hardfault c at line running task init to reproduce steps to reproduce the behavior map the mocap pose to the vision pose topic enable the vision pose estimate start the copter in altitude mode and take off switch to position mode the copter holds its position stable for seconds until the described issue occurs expected behavior the copter should hold its position log files mocap at the log indicates low on the stack mocap at the log does not point out a clear error but the same issue occurred hardware pixhawk holybro
0
9,696
25,067,118,496
IssuesEvent
2022-11-07 09:14:07
R-Type-Epitech-Nantes/R-Type
https://api.github.com/repos/R-Type-Epitech-Nantes/R-Type
closed
Implement Admin Panel
Architecture Network R-Type Game
Link the API library inside the Server and Client executable : - Create an instance of the class - Update the database creation process by adding a new player named admin with admin password and moderator right's - Make the call to the API when necessary (Auth, Join -> Banned, Muted -> Chat, GamePlayed -> Room Start, KilledEnemies -> Enemy death, Deaths -> Player death) Create an Admin Panel : - Create a new executable - Get current command and parse it - Create inside the Notion an Admin Panel documentation - Create a get command - Create a set command - Bind all the previous command to the parsing process with Keywords Implement a new 4X protocol inside Communicator : - Add get request for all the database value - Add set request for Moderator, Mute, Ban - Send a notification to the client when he his been muted
1.0
Implement Admin Panel - Link the API library inside the Server and Client executable : - Create an instance of the class - Update the database creation process by adding a new player named admin with admin password and moderator right's - Make the call to the API when necessary (Auth, Join -> Banned, Muted -> Chat, GamePlayed -> Room Start, KilledEnemies -> Enemy death, Deaths -> Player death) Create an Admin Panel : - Create a new executable - Get current command and parse it - Create inside the Notion an Admin Panel documentation - Create a get command - Create a set command - Bind all the previous command to the parsing process with Keywords Implement a new 4X protocol inside Communicator : - Add get request for all the database value - Add set request for Moderator, Mute, Ban - Send a notification to the client when he his been muted
non_test
implement admin panel link the api library inside the server and client executable create an instance of the class update the database creation process by adding a new player named admin with admin password and moderator right s make the call to the api when necessary auth join banned muted chat gameplayed room start killedenemies enemy death deaths player death create an admin panel create a new executable get current command and parse it create inside the notion an admin panel documentation create a get command create a set command bind all the previous command to the parsing process with keywords implement a new protocol inside communicator add get request for all the database value add set request for moderator mute ban send a notification to the client when he his been muted
0
319,377
27,369,313,281
IssuesEvent
2023-02-27 21:53:41
CGCookie/retopoflow
https://api.github.com/repos/CGCookie/retopoflow
closed
[BUG] Target mesh jumps off the source mesh after "Undo" or when decreasing the number of segments (with the use of "Strokes" tool)
bug Ready for Testing
[BUG] Target mesh jumps off the source mesh after "Undo" or when decreasing the number of segments (with the use of "Strokes" tool) Retopoflow Version: 3.2.8 Blender Version/Hash: 3.2 Platform Version/Distribution: Win10 **Issue:** When creating a new line of edges with "Strokes" tool, the target mesh jumps off from the source mesh, either at - "Undo" (I did not save the file just before chosing "Undo", as I read it was a known bug in previous versions) or - when decreasing the number of segments of the newly created strip The target mesh can be moved back to its original place, if I undo the last operations, but not only the last one, but maybe even 5-6 steps. Thus my new topology evolutes backwards, I'm losing several earlier created steps, which I need to recreate again, what can be really annoying after the 4-5 consecutive attempt. Thank you if you could help me in this issue. ![image](https://user-images.githubusercontent.com/113591169/190405900-ec1fa851-767f-487f-89c2-8d95a8675b68.png)
1.0
[BUG] Target mesh jumps off the source mesh after "Undo" or when decreasing the number of segments (with the use of "Strokes" tool) - [BUG] Target mesh jumps off the source mesh after "Undo" or when decreasing the number of segments (with the use of "Strokes" tool) Retopoflow Version: 3.2.8 Blender Version/Hash: 3.2 Platform Version/Distribution: Win10 **Issue:** When creating a new line of edges with "Strokes" tool, the target mesh jumps off from the source mesh, either at - "Undo" (I did not save the file just before chosing "Undo", as I read it was a known bug in previous versions) or - when decreasing the number of segments of the newly created strip The target mesh can be moved back to its original place, if I undo the last operations, but not only the last one, but maybe even 5-6 steps. Thus my new topology evolutes backwards, I'm losing several earlier created steps, which I need to recreate again, what can be really annoying after the 4-5 consecutive attempt. Thank you if you could help me in this issue. ![image](https://user-images.githubusercontent.com/113591169/190405900-ec1fa851-767f-487f-89c2-8d95a8675b68.png)
test
target mesh jumps off the source mesh after undo or when decreasing the number of segments with the use of strokes tool target mesh jumps off the source mesh after undo or when decreasing the number of segments with the use of strokes tool retopoflow version blender version hash platform version distribution issue when creating a new line of edges with strokes tool the target mesh jumps off from the source mesh either at undo i did not save the file just before chosing undo as i read it was a known bug in previous versions or when decreasing the number of segments of the newly created strip the target mesh can be moved back to its original place if i undo the last operations but not only the last one but maybe even steps thus my new topology evolutes backwards i m losing several earlier created steps which i need to recreate again what can be really annoying after the consecutive attempt thank you if you could help me in this issue
1
69,055
8,372,575,218
IssuesEvent
2018-10-05 07:30:35
flutter/flutter
https://api.github.com/repos/flutter/flutter
closed
Issue with dynamic list and list view
f: material design f: scrolling framework severe: crash
Hi, I am using a global list, together with a data table which has editable field for quantity (Screenshot 1). I select items, add quantity for them and then add them to cart. When I go back to the ListView which had been working all this time, this happens. This error occurs only in conjunction with TextEditingController. I have attached the offending :P files. Thanks ``` Launching lib\main.dart on Lenovo TB 8504X in debug mode... Built build\app\outputs\apk\debug\app-debug.apk. V/BoostFramework( 9688): mAcquireFunc method = public int com.qualcomm.qti.Performance.perfLockAcquire(int,int[]) V/BoostFramework( 9688): mReleaseFunc method = public int com.qualcomm.qti.Performance.perfLockRelease() V/BoostFramework( 9688): mAcquireTouchFunc method = public int com.qualcomm.qti.Performance.perfLockAcquireTouch(android.view.MotionEvent,android.util.DisplayMetrics,int,int[]) V/BoostFramework( 9688): mIOPStart method = public int com.qualcomm.qti.Performance.perfIOPrefetchStart(int,java.lang.String) V/BoostFramework( 9688): mIOPStop method = public int com.qualcomm.qti.Performance.perfIOPrefetchStop() V/BoostFramework( 9688): BoostFramework() : mPerf = com.qualcomm.qti.Performance@88e23c4 I/flutter ( 9688): ══╡ EXCEPTION CAUGHT BY WIDGETS LIBRARY ╞═══════════════════════════════════════════════════════════ I/flutter ( 9688): The following assertion was thrown building NotificationListener<KeepAliveNotification>: I/flutter ( 9688): 'package:flutter/src/rendering/object.dart': Failed assertion: line 2798 pos 14: I/flutter ( 9688): '_debugUltimatePreviousSiblingOf(after, equals: _firstChild)': is not true. I/flutter ( 9688): I/flutter ( 9688): Either the assertion indicates an error in the framework itself, or we should provide substantially I/flutter ( 9688): more information in this error message to help you determine and fix the underlying cause. I/flutter ( 9688): In either case, please report this assertion by filing a bug on GitHub: I/flutter ( 9688): https://github.com/flutter/flutter/issues/new I/flutter ( 9688): I/flutter ( 9688): When the exception was thrown, this was the stack: I/flutter ( 9688): #2 _RenderSliverMultiBoxAdaptor&RenderSliver&ContainerRenderObjectMixin._insertIntoChildList (package:flutter/src/rendering/object.dart:2798:14) I/flutter ( 9688): #3 _RenderSliverMultiBoxAdaptor&RenderSliver&ContainerRenderObjectMixin.insert (package:flutter/src/rendering/object.dart:2832:5) I/flutter ( 9688): #4 RenderSliverMultiBoxAdaptor.insert (package:flutter/src/rendering/sliver_multi_box_adaptor.dart:209:11) I/flutter ( 9688): #5 SliverMultiBoxAdaptorElement.insertChildRenderObject (package:flutter/src/widgets/sliver.dart:932:18) I/flutter ( 9688): #6 RenderObjectElement.attachRenderObject (package:flutter/src/widgets/framework.dart:4525:35) I/flutter ( 9688): #7 RenderObjectElement.mount (package:flutter/src/widgets/framework.dart:4291:5) I/flutter ( 9688): #8 SingleChildRenderObjectElement.mount (package:flutter/src/widgets/framework.dart:4665:11) I/flutter ( 9688): #9 Element.inflateWidget (package:flutter/src/widgets/framework.dart:2919:14) I/flutter ( 9688): #10 Element.updateChild (package:flutter/src/widgets/framework.dart:2722:12) I/flutter ( 9688): #11 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3665:16) I/flutter ( 9688): #12 Element.rebuild (package:flutter/src/widgets/framework.dart:3507:5) I/flutter ( 9688): #13 ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:3634:5) I/flutter ( 9688): #14 ComponentElement.mount (package:flutter/src/widgets/framework.dart:3629:5) I/flutter ( 9688): #15 Element.inflateWidget (package:flutter/src/widgets/framework.dart:2919:14) I/flutter ( 9688): #16 Element.updateChild (package:flutter/src/widgets/framework.dart:2722:12) I/flutter ( 9688): #17 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3665:16) I/flutter ( 9688): #18 Element.rebuild (package:flutter/src/widgets/framework.dart:3507:5) I/flutter ( 9688): #19 ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:3634:5) I/flutter ( 9688): #20 ComponentElement.mount (package:flutter/src/widgets/framework.dart:3629:5) I/flutter ( 9688): #21 ParentDataElement.mount (package:flutter/src/widgets/framework.dart:3967:11) I/flutter ( 9688): #22 Element.inflateWidget (package:flutter/src/widgets/framework.dart:2919:14) I/flutter ( 9688): #23 Element.updateChild (package:flutter/src/widgets/framework.dart:2722:12) I/flutter ( 9688): #24 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3665:16) I/flutter ( 9688): #25 Element.rebuild (package:flutter/src/widgets/framework.dart:3507:5) I/flutter ( 9688): #26 ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:3634:5) I/flutter ( 9688): #27 StatefulElement._firstBuild (package:flutter/src/widgets/framework.dart:3781:11) I/flutter ( 9688): #28 ComponentElement.mount (package:flutter/src/widgets/framework.dart:3629:5) I/flutter ( 9688): #29 Element.inflateWidget (package:flutter/src/widgets/framework.dart:2919:14) I/flutter ( 9688): #30 Element.updateChild (package:flutter/src/widgets/framework.dart:2722:12) I/flutter ( 9688): #31 SliverMultiBoxAdaptorElement.updateChild (package:flutter/src/widgets/sliver.dart:811:36) I/flutter ( 9688): #32 SliverMultiBoxAdaptorElement.performRebuild (package:flutter/src/widgets/sliver.dart:769:34) I/flutter ( 9688): #33 SliverMultiBoxAdaptorElement.update (package:flutter/src/widgets/sliver.dart:738:7) I/flutter ( 9688): #34 Element.updateChild (package:flutter/src/widgets/framework.dart:2711:15) I/flutter ( 9688): #35 RenderObjectElement.updateChildren (package:flutter/src/widgets/framework.dart:4391:32) I/flutter ( 9688): #36 MultiChildRenderObjectElement.update (package:flutter/src/widgets/framework.dart:4781:17) I/flutter ( 9688): #37 _ViewportElement.update (package:flutter/src/widgets/viewport.dart:192:11) I/flutter ( 9688): #38 Element.updateChild (package:flutter/src/widgets/framework.dart:2711:15) I/flutter ( 9688): #39 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3665:16) I/flutter ( 9688): #40 Element.rebuild (package:flutter/src/widgets/framework.dart:3507:5) I/flutter ( 9688): #41 ProxyElement.update (package:flutter/src/widgets/framework.dart:3921:5) I/flutter ( 9688): #42 Element.updateChild (package:flutter/src/widgets/framework.dart:2711:15) I/flutter ( 9688): #43 SingleChildRenderObjectElement.update (package:flutter/src/widgets/framework.dart:4673:14) I/flutter ( 9688): #44 Element.updateChild (package:flutter/src/widgets/framework.dart:2711:15) I/flutter ( 9688): #45 SingleChildRenderObjectElement.update (package:flutter/src/widgets/framework.dart:4673:14) I/flutter ( 9688): #46 Element.updateChild (package:flutter/src/widgets/framework.dart:2711:15) I/flutter ( 9688): #47 SingleChildRenderObjectElement.update (package:flutter/src/widgets/framework.dart:4673:14) I/flutter ( 9688): #48 Element.updateChild (package:flutter/src/widgets/framework.dart:2711:15) I/flutter ( 9688): #49 SingleChildRenderObjectElement.update (package:flutter/src/widgets/framework.dart:4673:14) I/flutter ( 9688): #50 Element.updateChild (package:flutter/src/widgets/framework.dart:2711:15) I/flutter ( 9688): #51 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3665:16) I/flutter ( 9688): #52 Element.rebuild (package:flutter/src/widgets/framework.dart:3507:5) I/flutter ( 9688): #53 StatefulElement.update (package:flutter/src/widgets/framework.dart:3811:5) I/flutter ( 9688): #54 Element.updateChild (package:flutter/src/widgets/framework.dart:2711:15) I/flutter ( 9688): #55 SingleChildRenderObjectElement.update (package:flutter/src/widgets/framework.dart:4673:14) I/flutter ( 9688): #56 Element.updateChild (package:flutter/src/widgets/framework.dart:2711:15) I/flutter ( 9688): #57 SingleChildRenderObjectElement.update (package:flutter/src/widgets/framework.dart:4673:14) I/flutter ( 9688): #58 Element.updateChild (package:flutter/src/widgets/framework.dart:2711:15) I/flutter ( 9688): #59 SingleChildRenderObjectElement.update (package:flutter/src/widgets/framework.dart:4673:14) I/flutter ( 9688): #60 Element.updateChild (package:flutter/src/widgets/framework.dart:2711:15) I/flutter ( 9688): #61 SingleChildRenderObjectElement.update (package:flutter/src/widgets/framework.dart:4673:14) I/flutter ( 9688): #62 Element.updateChild (package:flutter/src/widgets/framework.dart:2711:15) I/flutter ( 9688): #63 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3665:16) I/flutter ( 9688): #64 Element.rebuild (package:flutter/src/widgets/framework.dart:3507:5) I/flutter ( 9688): #65 StatelessElement.update (package:flutter/src/widgets/framework.dart:3714:5) I/flutter ( 9688): #66 Element.updateChild (package:flutter/src/widgets/framework.dart:2711:15) I/flutter ( 9688): #67 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3665:16) I/flutter ( 9688): #68 Element.rebuild (package:flutter/src/widgets/framework.dart:3507:5) I/flutter ( 9688): #69 StatefulElement.update (package:flutter/src/widgets/framework.dart:3811:5) I/flutter ( 9688): #70 Element.updateChild (package:flutter/src/widgets/framework.dart:2711:15) I/flutter ( 9688): #71 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3665:16) I/flutter ( 9688): #72 Element.rebuild (package:flutter/src/widgets/framework.dart:3507:5) I/flutter ( 9688): #73 StatefulElement.update (package:flutter/src/widgets/framework.dart:3811:5) I/flutter ( 9688): #74 Element.updateChild (package:flutter/src/widgets/framework.dart:2711:15) I/flutter ( 9688): #75 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3665:16) I/flutter ( 9688): #76 Element.rebuild (package:flutter/src/widgets/framework.dart:3507:5) I/flutter ( 9688): #77 StatelessElement.update (package:flutter/src/widgets/framework.dart:3714:5) I/flutter ( 9688): #78 Element.updateChild (package:flutter/src/widgets/framework.dart:2711:15) I/flutter ( 9688): #79 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3665:16) I/flutter ( 9688): #80 Element.rebuild (package:flutter/src/widgets/framework.dart:3507:5) I/flutter ( 9688): #81 StatefulElement.update (package:flutter/src/widgets/framework.dart:3811:5) I/flutter ( 9688): #82 Element.updateChild (package:flutter/src/widgets/framework.dart:2711:15) I/flutter ( 9688): #83 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3665:16) I/flutter ( 9688): #84 Element.rebuild (package:flutter/src/widgets/framework.dart:3507:5) I/flutter ( 9688): #85 StatelessElement.update (package:flutter/src/widgets/framework.dart:3714:5) I/flutter ( 9688): #86 Element.updateChild (package:flutter/src/widgets/framework.dart:2711:15) I/flutter ( 9688): #87 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3665:16) I/flutter ( 9688): #88 Element.rebuild (package:flutter/src/widgets/framework.dart:3507:5) I/flutter ( 9688): #89 BuildOwner.buildScope (package:flutter/src/widgets/framework.dart:2255:33) I/flutter ( 9688): #90 _WidgetsFlutterBinding&BindingBase&GestureBinding&ServicesBinding&SchedulerBinding&PaintingBinding&SemanticsBinding&RendererBinding&WidgetsBinding.drawFrame (package:flutter/src/widgets/binding.dart:653:20) I/flutter ( 9688): #91 _WidgetsFlutterBinding&BindingBase&GestureBinding&ServicesBinding&SchedulerBinding&PaintingBinding&SemanticsBinding&RendererBinding._handlePersistentFrameCallback (package:flutter/src/rendering/binding.dart:208:5) I/flutter ( 9688): #92 _WidgetsFlutterBinding&BindingBase&GestureBinding&ServicesBinding&SchedulerBinding._invokeFrameCallback (package:flutter/src/scheduler/binding.dart:990:15) I/flutter ( 9688): #93 _WidgetsFlutterBinding&BindingBase&GestureBinding&ServicesBinding&SchedulerBinding.handleDrawFrame (package:flutter/src/scheduler/binding.dart:930:9) I/flutter ( 9688): #94 _WidgetsFlutterBinding&BindingBase&GestureBinding&ServicesBinding&SchedulerBinding._handleDrawFrame (package:flutter/src/scheduler/binding.dart:842:5) I/flutter ( 9688): #95 _invoke (dart:ui/hooks.dart:128:13) I/flutter ( 9688): #96 _drawFrame (dart:ui/hooks.dart:117:3) I/flutter ( 9688): (elided 2 frames from class _AssertionError) I/flutter ( 9688): ════════════════════════════════════════════════════════════════════════════════════════════════════ I/flutter ( 9688): Another exception was thrown: 'package:flutter/src/rendering/object.dart': Failed assertion: line 2798 pos 14: '_debugUltimatePreviousSiblingOf(after, equals: _firstChild)': is not true. I/flutter ( 9688): Another exception was thrown: 'package:flutter/src/rendering/object.dart': Failed assertion: line 2798 pos 14: '_debugUltimatePreviousSiblingOf(after, equals: _firstChild)': is not true. I/flutter ( 9688): Another exception was thrown: 'package:flutter/src/rendering/object.dart': Failed assertion: line 2798 pos 14: '_debugUltimatePreviousSiblingOf(after, equals: _firstChild)': is not true. I/flutter ( 9688): Another exception was thrown: 'package:flutter/src/widgets/framework.dart': Failed assertion: line 3509 pos 14: 'owner._debugCurrentBuildTarget == this': is not true. I/flutter ( 9688): Another exception was thrown: 'package:flutter/src/widgets/framework.dart': Failed assertion: line 3509 pos 14: 'owner._debugCurrentBuildTarget == this': is not true. I/flutter ( 9688): Another exception was thrown: 'package:flutter/src/widgets/framework.dart': Failed assertion: line 3509 pos 14: 'owner._debugCurrentBuildTarget == this': is not true. I/flutter ( 9688): Another exception was thrown: 'package:flutter/src/widgets/framework.dart': Failed assertion: line 3509 pos 14: 'owner._debugCurrentBuildTarget == this': is not true. I/flutter ( 9688): Another exception was thrown: 'package:flutter/src/widgets/framework.dart': Failed assertion: line 3509 pos 14: 'owner._debugCurrentBuildTarget == this': is not true. I/flutter ( 9688): Another exception was thrown: 'package:flutter/src/widgets/framework.dart': Failed assertion: line 3509 pos 14: 'owner._debugCurrentBuildTarget == this': is not true. I/flutter ( 9688): Another exception was thrown: 'package:flutter/src/widgets/framework.dart': Failed assertion: line 3509 pos 14: 'owner._debugCurrentBuildTarget == this': is not true. I/flutter ( 9688): Another exception was thrown: 'package:flutter/src/widgets/framework.dart': Failed assertion: line 3509 pos 14: 'owner._debugCurrentBuildTarget == this': is not true. I/flutter ( 9688): Another exception was thrown: 'package:flutter/src/widgets/framework.dart': Failed assertion: line 3509 pos 14: 'owner._debugCurrentBuildTarget == this': is not true. I/flutter ( 9688): Another exception was thrown: The _ScaffoldLayout custom multichild layout delegate forgot to lay out the following children: ``` ![screenshot_20180913-161225](https://user-images.githubusercontent.com/35850067/45490598-3482af00-b770-11e8-9112-4708474f062b.jpeg)
1.0
Issue with dynamic list and list view - Hi, I am using a global list, together with a data table which has editable field for quantity (Screenshot 1). I select items, add quantity for them and then add them to cart. When I go back to the ListView which had been working all this time, this happens. This error occurs only in conjunction with TextEditingController. I have attached the offending :P files. Thanks ``` Launching lib\main.dart on Lenovo TB 8504X in debug mode... Built build\app\outputs\apk\debug\app-debug.apk. V/BoostFramework( 9688): mAcquireFunc method = public int com.qualcomm.qti.Performance.perfLockAcquire(int,int[]) V/BoostFramework( 9688): mReleaseFunc method = public int com.qualcomm.qti.Performance.perfLockRelease() V/BoostFramework( 9688): mAcquireTouchFunc method = public int com.qualcomm.qti.Performance.perfLockAcquireTouch(android.view.MotionEvent,android.util.DisplayMetrics,int,int[]) V/BoostFramework( 9688): mIOPStart method = public int com.qualcomm.qti.Performance.perfIOPrefetchStart(int,java.lang.String) V/BoostFramework( 9688): mIOPStop method = public int com.qualcomm.qti.Performance.perfIOPrefetchStop() V/BoostFramework( 9688): BoostFramework() : mPerf = com.qualcomm.qti.Performance@88e23c4 I/flutter ( 9688): ══╡ EXCEPTION CAUGHT BY WIDGETS LIBRARY ╞═══════════════════════════════════════════════════════════ I/flutter ( 9688): The following assertion was thrown building NotificationListener<KeepAliveNotification>: I/flutter ( 9688): 'package:flutter/src/rendering/object.dart': Failed assertion: line 2798 pos 14: I/flutter ( 9688): '_debugUltimatePreviousSiblingOf(after, equals: _firstChild)': is not true. I/flutter ( 9688): I/flutter ( 9688): Either the assertion indicates an error in the framework itself, or we should provide substantially I/flutter ( 9688): more information in this error message to help you determine and fix the underlying cause. I/flutter ( 9688): In either case, please report this assertion by filing a bug on GitHub: I/flutter ( 9688): https://github.com/flutter/flutter/issues/new I/flutter ( 9688): I/flutter ( 9688): When the exception was thrown, this was the stack: I/flutter ( 9688): #2 _RenderSliverMultiBoxAdaptor&RenderSliver&ContainerRenderObjectMixin._insertIntoChildList (package:flutter/src/rendering/object.dart:2798:14) I/flutter ( 9688): #3 _RenderSliverMultiBoxAdaptor&RenderSliver&ContainerRenderObjectMixin.insert (package:flutter/src/rendering/object.dart:2832:5) I/flutter ( 9688): #4 RenderSliverMultiBoxAdaptor.insert (package:flutter/src/rendering/sliver_multi_box_adaptor.dart:209:11) I/flutter ( 9688): #5 SliverMultiBoxAdaptorElement.insertChildRenderObject (package:flutter/src/widgets/sliver.dart:932:18) I/flutter ( 9688): #6 RenderObjectElement.attachRenderObject (package:flutter/src/widgets/framework.dart:4525:35) I/flutter ( 9688): #7 RenderObjectElement.mount (package:flutter/src/widgets/framework.dart:4291:5) I/flutter ( 9688): #8 SingleChildRenderObjectElement.mount (package:flutter/src/widgets/framework.dart:4665:11) I/flutter ( 9688): #9 Element.inflateWidget (package:flutter/src/widgets/framework.dart:2919:14) I/flutter ( 9688): #10 Element.updateChild (package:flutter/src/widgets/framework.dart:2722:12) I/flutter ( 9688): #11 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3665:16) I/flutter ( 9688): #12 Element.rebuild (package:flutter/src/widgets/framework.dart:3507:5) I/flutter ( 9688): #13 ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:3634:5) I/flutter ( 9688): #14 ComponentElement.mount (package:flutter/src/widgets/framework.dart:3629:5) I/flutter ( 9688): #15 Element.inflateWidget (package:flutter/src/widgets/framework.dart:2919:14) I/flutter ( 9688): #16 Element.updateChild (package:flutter/src/widgets/framework.dart:2722:12) I/flutter ( 9688): #17 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3665:16) I/flutter ( 9688): #18 Element.rebuild (package:flutter/src/widgets/framework.dart:3507:5) I/flutter ( 9688): #19 ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:3634:5) I/flutter ( 9688): #20 ComponentElement.mount (package:flutter/src/widgets/framework.dart:3629:5) I/flutter ( 9688): #21 ParentDataElement.mount (package:flutter/src/widgets/framework.dart:3967:11) I/flutter ( 9688): #22 Element.inflateWidget (package:flutter/src/widgets/framework.dart:2919:14) I/flutter ( 9688): #23 Element.updateChild (package:flutter/src/widgets/framework.dart:2722:12) I/flutter ( 9688): #24 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3665:16) I/flutter ( 9688): #25 Element.rebuild (package:flutter/src/widgets/framework.dart:3507:5) I/flutter ( 9688): #26 ComponentElement._firstBuild (package:flutter/src/widgets/framework.dart:3634:5) I/flutter ( 9688): #27 StatefulElement._firstBuild (package:flutter/src/widgets/framework.dart:3781:11) I/flutter ( 9688): #28 ComponentElement.mount (package:flutter/src/widgets/framework.dart:3629:5) I/flutter ( 9688): #29 Element.inflateWidget (package:flutter/src/widgets/framework.dart:2919:14) I/flutter ( 9688): #30 Element.updateChild (package:flutter/src/widgets/framework.dart:2722:12) I/flutter ( 9688): #31 SliverMultiBoxAdaptorElement.updateChild (package:flutter/src/widgets/sliver.dart:811:36) I/flutter ( 9688): #32 SliverMultiBoxAdaptorElement.performRebuild (package:flutter/src/widgets/sliver.dart:769:34) I/flutter ( 9688): #33 SliverMultiBoxAdaptorElement.update (package:flutter/src/widgets/sliver.dart:738:7) I/flutter ( 9688): #34 Element.updateChild (package:flutter/src/widgets/framework.dart:2711:15) I/flutter ( 9688): #35 RenderObjectElement.updateChildren (package:flutter/src/widgets/framework.dart:4391:32) I/flutter ( 9688): #36 MultiChildRenderObjectElement.update (package:flutter/src/widgets/framework.dart:4781:17) I/flutter ( 9688): #37 _ViewportElement.update (package:flutter/src/widgets/viewport.dart:192:11) I/flutter ( 9688): #38 Element.updateChild (package:flutter/src/widgets/framework.dart:2711:15) I/flutter ( 9688): #39 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3665:16) I/flutter ( 9688): #40 Element.rebuild (package:flutter/src/widgets/framework.dart:3507:5) I/flutter ( 9688): #41 ProxyElement.update (package:flutter/src/widgets/framework.dart:3921:5) I/flutter ( 9688): #42 Element.updateChild (package:flutter/src/widgets/framework.dart:2711:15) I/flutter ( 9688): #43 SingleChildRenderObjectElement.update (package:flutter/src/widgets/framework.dart:4673:14) I/flutter ( 9688): #44 Element.updateChild (package:flutter/src/widgets/framework.dart:2711:15) I/flutter ( 9688): #45 SingleChildRenderObjectElement.update (package:flutter/src/widgets/framework.dart:4673:14) I/flutter ( 9688): #46 Element.updateChild (package:flutter/src/widgets/framework.dart:2711:15) I/flutter ( 9688): #47 SingleChildRenderObjectElement.update (package:flutter/src/widgets/framework.dart:4673:14) I/flutter ( 9688): #48 Element.updateChild (package:flutter/src/widgets/framework.dart:2711:15) I/flutter ( 9688): #49 SingleChildRenderObjectElement.update (package:flutter/src/widgets/framework.dart:4673:14) I/flutter ( 9688): #50 Element.updateChild (package:flutter/src/widgets/framework.dart:2711:15) I/flutter ( 9688): #51 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3665:16) I/flutter ( 9688): #52 Element.rebuild (package:flutter/src/widgets/framework.dart:3507:5) I/flutter ( 9688): #53 StatefulElement.update (package:flutter/src/widgets/framework.dart:3811:5) I/flutter ( 9688): #54 Element.updateChild (package:flutter/src/widgets/framework.dart:2711:15) I/flutter ( 9688): #55 SingleChildRenderObjectElement.update (package:flutter/src/widgets/framework.dart:4673:14) I/flutter ( 9688): #56 Element.updateChild (package:flutter/src/widgets/framework.dart:2711:15) I/flutter ( 9688): #57 SingleChildRenderObjectElement.update (package:flutter/src/widgets/framework.dart:4673:14) I/flutter ( 9688): #58 Element.updateChild (package:flutter/src/widgets/framework.dart:2711:15) I/flutter ( 9688): #59 SingleChildRenderObjectElement.update (package:flutter/src/widgets/framework.dart:4673:14) I/flutter ( 9688): #60 Element.updateChild (package:flutter/src/widgets/framework.dart:2711:15) I/flutter ( 9688): #61 SingleChildRenderObjectElement.update (package:flutter/src/widgets/framework.dart:4673:14) I/flutter ( 9688): #62 Element.updateChild (package:flutter/src/widgets/framework.dart:2711:15) I/flutter ( 9688): #63 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3665:16) I/flutter ( 9688): #64 Element.rebuild (package:flutter/src/widgets/framework.dart:3507:5) I/flutter ( 9688): #65 StatelessElement.update (package:flutter/src/widgets/framework.dart:3714:5) I/flutter ( 9688): #66 Element.updateChild (package:flutter/src/widgets/framework.dart:2711:15) I/flutter ( 9688): #67 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3665:16) I/flutter ( 9688): #68 Element.rebuild (package:flutter/src/widgets/framework.dart:3507:5) I/flutter ( 9688): #69 StatefulElement.update (package:flutter/src/widgets/framework.dart:3811:5) I/flutter ( 9688): #70 Element.updateChild (package:flutter/src/widgets/framework.dart:2711:15) I/flutter ( 9688): #71 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3665:16) I/flutter ( 9688): #72 Element.rebuild (package:flutter/src/widgets/framework.dart:3507:5) I/flutter ( 9688): #73 StatefulElement.update (package:flutter/src/widgets/framework.dart:3811:5) I/flutter ( 9688): #74 Element.updateChild (package:flutter/src/widgets/framework.dart:2711:15) I/flutter ( 9688): #75 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3665:16) I/flutter ( 9688): #76 Element.rebuild (package:flutter/src/widgets/framework.dart:3507:5) I/flutter ( 9688): #77 StatelessElement.update (package:flutter/src/widgets/framework.dart:3714:5) I/flutter ( 9688): #78 Element.updateChild (package:flutter/src/widgets/framework.dart:2711:15) I/flutter ( 9688): #79 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3665:16) I/flutter ( 9688): #80 Element.rebuild (package:flutter/src/widgets/framework.dart:3507:5) I/flutter ( 9688): #81 StatefulElement.update (package:flutter/src/widgets/framework.dart:3811:5) I/flutter ( 9688): #82 Element.updateChild (package:flutter/src/widgets/framework.dart:2711:15) I/flutter ( 9688): #83 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3665:16) I/flutter ( 9688): #84 Element.rebuild (package:flutter/src/widgets/framework.dart:3507:5) I/flutter ( 9688): #85 StatelessElement.update (package:flutter/src/widgets/framework.dart:3714:5) I/flutter ( 9688): #86 Element.updateChild (package:flutter/src/widgets/framework.dart:2711:15) I/flutter ( 9688): #87 ComponentElement.performRebuild (package:flutter/src/widgets/framework.dart:3665:16) I/flutter ( 9688): #88 Element.rebuild (package:flutter/src/widgets/framework.dart:3507:5) I/flutter ( 9688): #89 BuildOwner.buildScope (package:flutter/src/widgets/framework.dart:2255:33) I/flutter ( 9688): #90 _WidgetsFlutterBinding&BindingBase&GestureBinding&ServicesBinding&SchedulerBinding&PaintingBinding&SemanticsBinding&RendererBinding&WidgetsBinding.drawFrame (package:flutter/src/widgets/binding.dart:653:20) I/flutter ( 9688): #91 _WidgetsFlutterBinding&BindingBase&GestureBinding&ServicesBinding&SchedulerBinding&PaintingBinding&SemanticsBinding&RendererBinding._handlePersistentFrameCallback (package:flutter/src/rendering/binding.dart:208:5) I/flutter ( 9688): #92 _WidgetsFlutterBinding&BindingBase&GestureBinding&ServicesBinding&SchedulerBinding._invokeFrameCallback (package:flutter/src/scheduler/binding.dart:990:15) I/flutter ( 9688): #93 _WidgetsFlutterBinding&BindingBase&GestureBinding&ServicesBinding&SchedulerBinding.handleDrawFrame (package:flutter/src/scheduler/binding.dart:930:9) I/flutter ( 9688): #94 _WidgetsFlutterBinding&BindingBase&GestureBinding&ServicesBinding&SchedulerBinding._handleDrawFrame (package:flutter/src/scheduler/binding.dart:842:5) I/flutter ( 9688): #95 _invoke (dart:ui/hooks.dart:128:13) I/flutter ( 9688): #96 _drawFrame (dart:ui/hooks.dart:117:3) I/flutter ( 9688): (elided 2 frames from class _AssertionError) I/flutter ( 9688): ════════════════════════════════════════════════════════════════════════════════════════════════════ I/flutter ( 9688): Another exception was thrown: 'package:flutter/src/rendering/object.dart': Failed assertion: line 2798 pos 14: '_debugUltimatePreviousSiblingOf(after, equals: _firstChild)': is not true. I/flutter ( 9688): Another exception was thrown: 'package:flutter/src/rendering/object.dart': Failed assertion: line 2798 pos 14: '_debugUltimatePreviousSiblingOf(after, equals: _firstChild)': is not true. I/flutter ( 9688): Another exception was thrown: 'package:flutter/src/rendering/object.dart': Failed assertion: line 2798 pos 14: '_debugUltimatePreviousSiblingOf(after, equals: _firstChild)': is not true. I/flutter ( 9688): Another exception was thrown: 'package:flutter/src/widgets/framework.dart': Failed assertion: line 3509 pos 14: 'owner._debugCurrentBuildTarget == this': is not true. I/flutter ( 9688): Another exception was thrown: 'package:flutter/src/widgets/framework.dart': Failed assertion: line 3509 pos 14: 'owner._debugCurrentBuildTarget == this': is not true. I/flutter ( 9688): Another exception was thrown: 'package:flutter/src/widgets/framework.dart': Failed assertion: line 3509 pos 14: 'owner._debugCurrentBuildTarget == this': is not true. I/flutter ( 9688): Another exception was thrown: 'package:flutter/src/widgets/framework.dart': Failed assertion: line 3509 pos 14: 'owner._debugCurrentBuildTarget == this': is not true. I/flutter ( 9688): Another exception was thrown: 'package:flutter/src/widgets/framework.dart': Failed assertion: line 3509 pos 14: 'owner._debugCurrentBuildTarget == this': is not true. I/flutter ( 9688): Another exception was thrown: 'package:flutter/src/widgets/framework.dart': Failed assertion: line 3509 pos 14: 'owner._debugCurrentBuildTarget == this': is not true. I/flutter ( 9688): Another exception was thrown: 'package:flutter/src/widgets/framework.dart': Failed assertion: line 3509 pos 14: 'owner._debugCurrentBuildTarget == this': is not true. I/flutter ( 9688): Another exception was thrown: 'package:flutter/src/widgets/framework.dart': Failed assertion: line 3509 pos 14: 'owner._debugCurrentBuildTarget == this': is not true. I/flutter ( 9688): Another exception was thrown: 'package:flutter/src/widgets/framework.dart': Failed assertion: line 3509 pos 14: 'owner._debugCurrentBuildTarget == this': is not true. I/flutter ( 9688): Another exception was thrown: The _ScaffoldLayout custom multichild layout delegate forgot to lay out the following children: ``` ![screenshot_20180913-161225](https://user-images.githubusercontent.com/35850067/45490598-3482af00-b770-11e8-9112-4708474f062b.jpeg)
non_test
issue with dynamic list and list view hi i am using a global list together with a data table which has editable field for quantity screenshot i select items add quantity for them and then add them to cart when i go back to the listview which had been working all this time this happens this error occurs only in conjunction with texteditingcontroller i have attached the offending p files thanks launching lib main dart on lenovo tb in debug mode built build app outputs apk debug app debug apk v boostframework macquirefunc method public int com qualcomm qti performance perflockacquire int int v boostframework mreleasefunc method public int com qualcomm qti performance perflockrelease v boostframework macquiretouchfunc method public int com qualcomm qti performance perflockacquiretouch android view motionevent android util displaymetrics int int v boostframework miopstart method public int com qualcomm qti performance perfioprefetchstart int java lang string v boostframework miopstop method public int com qualcomm qti performance perfioprefetchstop v boostframework boostframework mperf com qualcomm qti performance i flutter ══╡ exception caught by widgets library ╞═══════════════════════════════════════════════════════════ i flutter the following assertion was thrown building notificationlistener i flutter package flutter src rendering object dart failed assertion line pos i flutter debugultimateprevioussiblingof after equals firstchild is not true i flutter i flutter either the assertion indicates an error in the framework itself or we should provide substantially i flutter more information in this error message to help you determine and fix the underlying cause i flutter in either case please report this assertion by filing a bug on github i flutter i flutter i flutter when the exception was thrown this was the stack i flutter renderslivermultiboxadaptor rendersliver containerrenderobjectmixin insertintochildlist package flutter src rendering object dart i flutter renderslivermultiboxadaptor rendersliver containerrenderobjectmixin insert package flutter src rendering object dart i flutter renderslivermultiboxadaptor insert package flutter src rendering sliver multi box adaptor dart i flutter slivermultiboxadaptorelement insertchildrenderobject package flutter src widgets sliver dart i flutter renderobjectelement attachrenderobject package flutter src widgets framework dart i flutter renderobjectelement mount package flutter src widgets framework dart i flutter singlechildrenderobjectelement mount package flutter src widgets framework dart i flutter element inflatewidget package flutter src widgets framework dart i flutter element updatechild package flutter src widgets framework dart i flutter componentelement performrebuild package flutter src widgets framework dart i flutter element rebuild package flutter src widgets framework dart i flutter componentelement firstbuild package flutter src widgets framework dart i flutter componentelement mount package flutter src widgets framework dart i flutter element inflatewidget package flutter src widgets framework dart i flutter element updatechild package flutter src widgets framework dart i flutter componentelement performrebuild package flutter src widgets framework dart i flutter element rebuild package flutter src widgets framework dart i flutter componentelement firstbuild package flutter src widgets framework dart i flutter componentelement mount package flutter src widgets framework dart i flutter parentdataelement mount package flutter src widgets framework dart i flutter element inflatewidget package flutter src widgets framework dart i flutter element updatechild package flutter src widgets framework dart i flutter componentelement performrebuild package flutter src widgets framework dart i flutter element rebuild package flutter src widgets framework dart i flutter componentelement firstbuild package flutter src widgets framework dart i flutter statefulelement firstbuild package flutter src widgets framework dart i flutter componentelement mount package flutter src widgets framework dart i flutter element inflatewidget package flutter src widgets framework dart i flutter element updatechild package flutter src widgets framework dart i flutter slivermultiboxadaptorelement updatechild package flutter src widgets sliver dart i flutter slivermultiboxadaptorelement performrebuild package flutter src widgets sliver dart i flutter slivermultiboxadaptorelement update package flutter src widgets sliver dart i flutter element updatechild package flutter src widgets framework dart i flutter renderobjectelement updatechildren package flutter src widgets framework dart i flutter multichildrenderobjectelement update package flutter src widgets framework dart i flutter viewportelement update package flutter src widgets viewport dart i flutter element updatechild package flutter src widgets framework dart i flutter componentelement performrebuild package flutter src widgets framework dart i flutter element rebuild package flutter src widgets framework dart i flutter proxyelement update package flutter src widgets framework dart i flutter element updatechild package flutter src widgets framework dart i flutter singlechildrenderobjectelement update package flutter src widgets framework dart i flutter element updatechild package flutter src widgets framework dart i flutter singlechildrenderobjectelement update package flutter src widgets framework dart i flutter element updatechild package flutter src widgets framework dart i flutter singlechildrenderobjectelement update package flutter src widgets framework dart i flutter element updatechild package flutter src widgets framework dart i flutter singlechildrenderobjectelement update package flutter src widgets framework dart i flutter element updatechild package flutter src widgets framework dart i flutter componentelement performrebuild package flutter src widgets framework dart i flutter element rebuild package flutter src widgets framework dart i flutter statefulelement update package flutter src widgets framework dart i flutter element updatechild package flutter src widgets framework dart i flutter singlechildrenderobjectelement update package flutter src widgets framework dart i flutter element updatechild package flutter src widgets framework dart i flutter singlechildrenderobjectelement update package flutter src widgets framework dart i flutter element updatechild package flutter src widgets framework dart i flutter singlechildrenderobjectelement update package flutter src widgets framework dart i flutter element updatechild package flutter src widgets framework dart i flutter singlechildrenderobjectelement update package flutter src widgets framework dart i flutter element updatechild package flutter src widgets framework dart i flutter componentelement performrebuild package flutter src widgets framework dart i flutter element rebuild package flutter src widgets framework dart i flutter statelesselement update package flutter src widgets framework dart i flutter element updatechild package flutter src widgets framework dart i flutter componentelement performrebuild package flutter src widgets framework dart i flutter element rebuild package flutter src widgets framework dart i flutter statefulelement update package flutter src widgets framework dart i flutter element updatechild package flutter src widgets framework dart i flutter componentelement performrebuild package flutter src widgets framework dart i flutter element rebuild package flutter src widgets framework dart i flutter statefulelement update package flutter src widgets framework dart i flutter element updatechild package flutter src widgets framework dart i flutter componentelement performrebuild package flutter src widgets framework dart i flutter element rebuild package flutter src widgets framework dart i flutter statelesselement update package flutter src widgets framework dart i flutter element updatechild package flutter src widgets framework dart i flutter componentelement performrebuild package flutter src widgets framework dart i flutter element rebuild package flutter src widgets framework dart i flutter statefulelement update package flutter src widgets framework dart i flutter element updatechild package flutter src widgets framework dart i flutter componentelement performrebuild package flutter src widgets framework dart i flutter element rebuild package flutter src widgets framework dart i flutter statelesselement update package flutter src widgets framework dart i flutter element updatechild package flutter src widgets framework dart i flutter componentelement performrebuild package flutter src widgets framework dart i flutter element rebuild package flutter src widgets framework dart i flutter buildowner buildscope package flutter src widgets framework dart i flutter widgetsflutterbinding bindingbase gesturebinding servicesbinding schedulerbinding paintingbinding semanticsbinding rendererbinding widgetsbinding drawframe package flutter src widgets binding dart i flutter widgetsflutterbinding bindingbase gesturebinding servicesbinding schedulerbinding paintingbinding semanticsbinding rendererbinding handlepersistentframecallback package flutter src rendering binding dart i flutter widgetsflutterbinding bindingbase gesturebinding servicesbinding schedulerbinding invokeframecallback package flutter src scheduler binding dart i flutter widgetsflutterbinding bindingbase gesturebinding servicesbinding schedulerbinding handledrawframe package flutter src scheduler binding dart i flutter widgetsflutterbinding bindingbase gesturebinding servicesbinding schedulerbinding handledrawframe package flutter src scheduler binding dart i flutter invoke dart ui hooks dart i flutter drawframe dart ui hooks dart i flutter elided frames from class assertionerror i flutter ════════════════════════════════════════════════════════════════════════════════════════════════════ i flutter another exception was thrown package flutter src rendering object dart failed assertion line pos debugultimateprevioussiblingof after equals firstchild is not true i flutter another exception was thrown package flutter src rendering object dart failed assertion line pos debugultimateprevioussiblingof after equals firstchild is not true i flutter another exception was thrown package flutter src rendering object dart failed assertion line pos debugultimateprevioussiblingof after equals firstchild is not true i flutter another exception was thrown package flutter src widgets framework dart failed assertion line pos owner debugcurrentbuildtarget this is not true i flutter another exception was thrown package flutter src widgets framework dart failed assertion line pos owner debugcurrentbuildtarget this is not true i flutter another exception was thrown package flutter src widgets framework dart failed assertion line pos owner debugcurrentbuildtarget this is not true i flutter another exception was thrown package flutter src widgets framework dart failed assertion line pos owner debugcurrentbuildtarget this is not true i flutter another exception was thrown package flutter src widgets framework dart failed assertion line pos owner debugcurrentbuildtarget this is not true i flutter another exception was thrown package flutter src widgets framework dart failed assertion line pos owner debugcurrentbuildtarget this is not true i flutter another exception was thrown package flutter src widgets framework dart failed assertion line pos owner debugcurrentbuildtarget this is not true i flutter another exception was thrown package flutter src widgets framework dart failed assertion line pos owner debugcurrentbuildtarget this is not true i flutter another exception was thrown package flutter src widgets framework dart failed assertion line pos owner debugcurrentbuildtarget this is not true i flutter another exception was thrown the scaffoldlayout custom multichild layout delegate forgot to lay out the following children
0
236,490
18,098,997,945
IssuesEvent
2021-09-22 12:22:18
Azure/Industrial-IoT
https://api.github.com/repos/Azure/Industrial-IoT
closed
Error when deploying the version 2.8 via Microsoft.Azure.IIoT.Deployment
documentation deployment
Deployment aborts during the deployment step jumpbox-vm-setup with the following error: 'Long running operation failed with status 'Failed'. Additional Info:'At least one resource deployment operation failed. Please list deployment operations for details. Please see https://aka.ms/DeployOperations for usage details.'' I found following error description in the Azure portal for this deployment step: `{"code":"DeploymentFailed","message":"At least one resource deployment operation failed. Please list deployment operations for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"VMExtensionProvisioningError","message":"VM has reported a failure when processing extension 'scriptextensions_setup'. Error message: \"Enable failed: failed to execute command: command terminated with exit status=1\n[stdout]\nt.com/repos/azure-cli bionic/main amd64 azure-cli all 2.26.1-1~bionic [62.7 MB]\nFetched 62.7 MB in 1s (51.8 MB/s)\nSelecting previously unselected package azure-cli.\r\n(Reading database ... \r(Reading database ... 5%\r(Reading database ... 10%\r(Reading database ... 15%\r(Reading database ... 20%\r(Reading database ... 25%\r(Reading database ... 30%\r(Reading database ... 35%\r(Reading database ... 40%\r(Reading database ... 45%\r(Reading database ... 50%\r(Reading database ... 55%\r(Reading database ... 60%\r(Reading database ... 65%\r(Reading database ... 70%\r(Reading database ... 75%\r(Reading database ... 80%\r(Reading database ... 85%\r(Reading database ... 90%\r(Reading database ... 95%\r(Reading database ... 100%\r(Reading database ... 76955 files and directories currently installed.)\r\nPreparing to unpack .../azure-cli_2.26.1-1~bionic_all.deb ...\r\nUnpacking azure-cli (2.26.1-1~bionic) ...\r\nSetting up azure-cli (2.26.1-1~bionic) ...\r\n[\n {\n \"environmentName\": \"AzureCloud\",\n \"homeTenantId\": \"f76c822d-4d63-4207-ab41-39817e0d7b5d\",\n \"id\": \"56460eb4-5e4d-454b-bf43-5c9884692933\",\n \"isDefault\": true,\n \"managedByTenants\": [],\n \"name\": \"Windows Azure MSDN ? Visual Studio Premium\",\n \"state\": \"Enabled\",\n \"tenantId\": \"f76c822d-4d63-4207-ab41-39817e0d7b5d\",\n \"user\": {\n \"assignedIdentityInfo\": \"MSI\",\n \"name\": \"systemAssignedIdentity\",\n \"type\": \"servicePrincipal\"\n }\n }\n]\nMerged \"akscluster-87776-admin\" as current context in /root/.kube/config\nconfigmap/container-azm-ms-agentconfig created\n\"ingress-nginx\" has been added to your repositories\n\"jetstack\" has been added to your repositories\n\"aiiot\" has been added to your repositories\nHang tight while we grab the latest from your chart repositories...\n...Successfully got an update from the \"aiiot\" chart repository\n...Successfully got an update from the \"ingress-nginx\" chart repository\n...Successfully got an update from the \"jetstack\" chart repository\nUpdate Complete. ⎈Happy Helming!⎈\nnamespace/ingress-nginx created\nNAME: ingress-nginx\nLAST DEPLOYED: Fri Jul 23 13:33:55 2021\nNAMESPACE: ingress-nginx\nSTATUS: deployed\nREVISION: 1\nTEST SUITE: None\nNOTES:\nThe ingress-nginx controller has been installed.\nIt may take a few minutes for the LoadBalancer IP to be available.\nYou can watch the status by running 'kubectl --namespace ingress-nginx get services -o wide -w ingress-nginx-controller'\n\nAn example Ingress that makes use of the controller:\n\n apiVersion: networking.k8s.io/v1beta1\n kind: Ingress\n metadata:\n annotations:\n kubernetes.io/ingress.class: nginx\n name: example\n namespace: foo\n spec:\n rules:\n - host: www.example.com\n http:\n paths:\n - backend:\n serviceName: exampleService\n servicePort: 80\n path: /\n # This section is only required if TLS is to be enabled for the Ingress\n tls:\n - hosts:\n - www.example.com\n secretName: example-tls\n\nIf TLS is enabled for the Ingress, a Secret containing the certificate and key must also be provided:\n\n apiVersion: v1\n kind: Secret\n metadata:\n name: example-tls\n namespace: foo\n data:\n tls.crt: <base64 encoded cert>\n tls.key: <base64 encoded key>\n type: kubernetes.io/tls\nnamespace/cert-manager created\nNAME: cert-manager\nLAST DEPLOYED: Fri Jul 23 13:34:35 2021\nNAMESPACE: cert-manager\nSTATUS: deployed\nREVISION: 1\nTEST SUITE: None\nNOTES:\ncert-manager has been deployed successfully!\n\nIn order to begin issuing certificates, you will need to set up a ClusterIssuer\nor Issuer resource (for example, by creating a 'letsencrypt-staging' issuer).\n\nMore information on the different types of issuers and how to configure them\ncan be found in our documentation:\n\nhttps://cert-manager.io/docs/configuration/\n\nFor information on how to configure cert-manager to automatically provision\nCertificates for Ingress resources, take a look at the `ingress-shim`\ndocumentation:\n\nhttps://cert-manager.io/docs/usage/ingress/\nclusterissuer.cert-manager.io/letsencrypt-prod created\nnamespace/azure-industrial-iot created\n\n[stderr]\nd support levels: https://aka.ms/CLI_refstatus\nWARNING: Please note that \"az acr helm\" commands do not work with Helm 3, but you can still push Helm chart to ACR using a different command flow. For more information, please check out https://docs.microsoft.com/en-us/azure/container-registry/container-registry-helm-repos\nWARNING: Downloading client from https://get.helm.sh/helm-v3.3.4-linux-amd64.tar.gz, it may take a long time...\nWARNING: Successfully installed helm to /usr/local/bin.\nWARNING: Please ensure that /usr/local/bin is in your search PATH, so the `helm` command can be found.\n+ az login --identity\n+ [[ AzureKubernetesServiceClusterAdminRole -eq AzureKubernetesServiceClusterAdminRole ]]\n+ az aks get-credentials --resource-group iiot-test-edmu --name akscluster-87776 --admin\n+ kubectl apply -f /var/lib/waagent/custom-script/download/0/04_oms_agent_configmap.yaml\n+ helm repo add ingress-nginx https://kubernetes.github.io/ingress-nginx\n+ helm repo add jetstack https://charts.jetstack.io\n+ helm repo add aiiot https://microsoft.github.io/charts/repo\n+ helm repo update\n+ kubectl create namespace ingress-nginx\n+ helm install --atomic ingress-nginx ingress-nginx/ingress-nginx --namespace ingress-nginx --version 3.12.0 --timeout 30m0s --set controller.replicaCount=2 --set 'controller.nodeSelector.beta\\.kubernetes\\.io\\/os=linux' --set controller.service.loadBalancerIP=20.103.128.19 --set 'controller.service.annotations.service\\.beta\\.kubernetes\\.io\\/azure-dns-label-name=iiot-test-edmu' --set 'controller.config.compute-full-forward-for=\"true\"' --set 'controller.config.use-forward-headers=\"true\"' --set 'controller.config.proxy-buffer-size=\"32k\"' --set 'controller.config.client-header-buffer-size=\"32k\"' --set controller.metrics.enabled=true --set defaultBackend.enabled=true --set 'defaultBackend.nodeSelector.beta\\.kubernetes\\.io\\/os=linux'\n+ kubectl create namespace cert-manager\n+ helm install --atomic cert-manager jetstack/cert-manager --namespace cert-manager --version v1.1.0 --timeout 30m0s --set installCRDs=true\n+ n=0\n+ iterations=20\n+ [[ 0 -ge 20 ]]\n+ kubectl apply -f /var/lib/waagent/custom-script/download/0/90_letsencrypt_cluster_issuer.yaml\n+ break\n+ [[ 0 -eq 20 ]]\n+ kubectl create namespace azure-industrial-iot\n+ '[' '' = true ']'\n+ helm install --atomic azure-industrial-iot aiiot/azure-industrial-iot --namespace azure-industrial-iot --version --aiiot_image_tag --timeout 30m0s --set image.tag=--aiiot_image_namespace --set loadConfFromKeyVault=true --set azure.tenantId=f76c822d-4d63-4207-ab41-39817e0d7b5d --set azure.keyVault.uri=https://keyvault-11400.vault.azure.net/ --set azure.auth.servicesApp.appId=ec97099b-9cea-4b39-8988-f19621d2cf11 --set azure.auth.servicesApp.secret=8_9_A1D0.0un1F_-v4~3W23Laz25GtO~UO --set externalServiceUrl=https://iiot-test-edmu.westeurope.cloudapp.azure.com --set deployment.microServices.engineeringTool.enabled=true --set deployment.microServices.telemetryCdmProcessor.enabled=true --set deployment.ingress.enabled=true --set 'deployment.ingress.annotations.kubernetes\\.io\\/ingress\\.class=nginx' --set 'deployment.ingress.annotations.nginx\\.ingress\\.kubernetes\\.io\\/affinity=cookie' --set 'deployment.ingress.annotations.nginx\\.ingress\\.kubernetes\\.io\\/session-cookie-name=affinity' --set-string 'deployment.ingress.annotations.nginx\\.ingress\\.kubernetes\\.io\\/session-cookie-expires=14400' --set-string 'deployment.ingress.annotations.nginx\\.ingress\\.kubernetes\\.io\\/session-cookie-max-age=14400' --set-string 'deployment.ingress.annotations.nginx\\.ingress\\.kubernetes\\.io\\/proxy-read-timeout=3600' --set-string 'deployment.ingress.annotations.nginx\\.ingress\\.kubernetes\\.io\\/proxy-send-timeout=3600' --set 'deployment.ingress.annotations.cert-manager\\.io\\/cluster-issuer=letsencrypt-prod' --set 'deployment.ingress.tls[0].hosts[0]=iiot-test-edmu.westeurope.cloudapp.azure.com' --set 'deployment.ingress.tls[0].secretName=tls-secret' --set deployment.ingress.hostName=iiot-test-edmu.westeurope.cloudapp.azure.com\nError: failed to download \"aiiot/azure-industrial-iot\" (hint: running `helm repo update` may help)\n\"\r\n\r\nMore information on troubleshooting is available at https://aka.ms/VMExtensionCSELinuxTroubleshoot "}]}` **To Reproduce** Steps to reproduce the behavior: 1. Prepare service prinsipal to be used by deployment y following instructions [here](https://github.com/Azure/Industrial-IoT/blob/release/2.8/docs/deploy/howto-deploy-aks.md#running-with-service-principal-credentials). 2. Execute Microsoft.Azure.IIoT.Deployment with having the following appsettings,json file in the execution folder (security sensitive data has been replaced by "XXX"): `{ "Logging": { "LogLevel": { "Default": "Debug", "Microsoft": "Debug", "Microsoft.Hosting.Lifetime": "Debug" }, "Console": { "LogLevel": { "Default": "Debug" } } }, // RunMode determines which steps of Industrial IoT solution deployment will // be executed. Valid values are: // // - Full // Performs application registration, deployment of Azure resources // and deployment of microservices into AKS cluster. // // - ApplicationRegistration // Performs only application registration and output JSON for // ApplicationRegistration property bellow. // // - ResourceDeployment // Performs deployment of Azure resources and deployment of // microservices into AKS cluster. // "RunMode": "Full", // Defines authentication details. Different authentication flows will be // used based on which configuration parameters are specified: // // - If ClientId and ClientSecret are provided then Client credentials // authentication flow will be used. This flow requires a Service // Principal. // https://docs.microsoft.com/en-us/azure/active-directory/develop/msal-authentication-flows#client-credentials // // - If ClientId and ClientSecret are not provided then Interactive // authentication flow will be used on Windows. // https://docs.microsoft.com/en-us/azure/active-directory/develop/msal-authentication-flows#interactive // // - If ClientId and ClientSecret are not provided then Device code // authentication flow will be used on Linux and macOS. // https://docs.microsoft.com/en-us/azure/active-directory/develop/msal-authentication-flows#device-code // "Auth": { // Defines which Azure cloud to use. Valid values are: // // - AzureGlobalCloud // - AzureChinaCloud // - AzureUSGovernment // - AzureGermanCloud // "AzureEnvironment": "AzureGlobalCloud", // Id of the tenant to be used. Should be Guid. "TenantId": "XXX", // Details of Service Principal that should be used for authentication. // // - ClientId // ClientId of Service Principal. Other aliases of ClientId are AppId // and ApplicationId. // // - ClientSecret // ClientSecret of Service Principal. It is also sometimes referred // to as password. // "ClientId": "XXX", "ClientSecret": "XXX }, // Id of Azure Subscription within tenant. Should be Guid. "SubscriptionId": "XXX", // Name of the application deployment. Should be globally unique name. // // Note: This name will be used as name of App Service resource, thus // determining its URL as <ApplicationName>.azurewebsites.net. As a result, it // should be a globally unique name. // "ApplicationName": "iiot-test-edmu", // Base URL that will be used for generating RedirectUris for client // application. This is required for enabling client authentication for // use of exposed APIs (including access to Swagger). // // Usually this would be <ApplicationName>.azurewebsites.net // // This parameter is used only in ApplicationRegistration run mode. // "ApplicationUrl": "iiot-test-edmu.azurewebsites.net", "ResourceGroup": { // name of the resource group where azure resources will be created. "name": "iiot-test-edmu", // Determines whether an existing Resource Group should be used or a new one // should be created. "UseExisting": false, // Region where new Resource Group should be created. The following regions // are supported: // // - USEast // - USEast2 // - USWest // - USWest2 // - USCentral // - EuropeNorth // - EuropeWest // - AsiaSouthEast // - AustraliaEast // "Region": "EuropeWest" }, // azure-industrial-iot Helm chart details "Helm": { // Helm repository URL "RepoUrl": "https://microsoft.github.io/charts/repo", // azure-industrial-iot Helm chart version "ChartVersion": null, //"0.4", // Azure IIoT components image tag "ImageTag": null, //"2.8", // Default docker container registry "ContainerRegistryServer": "mcr.microsoft.com" }, // Provides definitions of applications and Service Principals to be used. // Those definitions will be used instead of creating new application // registrations and Service Principals for deployment of Azure resources. // // This is useful in ResourceDeployment mode. Execution in // ApplicationRegistration run mode will output JSON object for this property. // // Properties correspond to that of application registration and Service // Principal manifests. Definition of application properties can be found // here: // // https://docs.microsoft.com/en-us/azure/active-directory/develop/reference-app-manifest // // Application objects should contain the following properties: // // { // "Id": "<guid>", // "DisplayName": "<application name string>", // "IdentifierUris": [ // "<unique user-defined URI for the application>" // ], // "AppId": "<guid>" // } // // Service Principal objects should contain the following // properties: // // { // "Id": "<guid>", // "DisplayName": "<service principal name string>", // } // // ApplicationSecret is client secret (password) of an Application. // //"ApplicationRegistration": { // "ServiceApplication": { ... Application objects ... }, // "ServiceApplicationSP": { ... Application Service Principal objects ... }, // "ServiceApplicationSecret": "", // // "ClientApplication": { ... Application objects ... }, // "ClientApplicationSP": { ... Application Service Principal objects ... }, // "ClientApplicationSecret": "", // // "AksApplication": { ... Application objects ... }, // "AksApplicationSP": { ... Application Service Principal objects ... }, // "AksApplicationSecret": "" //}, // Defines whether to create .env file after deployment or not. // // .env file will contain environment variables necessary for connecting to // microservices of Industrial IoT solution for degugging purposes or for // access via cli client. // "SaveEnvFile": true, // Defines whether to perform cleanup of registered applications and Azure // resources if an error occurs during deployment of Industrial IoT solution. "NoCleanup": false } ` 2. Wait for about 10-15 minutes for error to ocure. **Expected behavior** Deployment should be executed without any errors. **Desktop (please complete the following information):** - OS: Windows 10 - Browser: MS Edge, required and used for Azure Portal only **Additional context** 1. I'm executing the deployment in Service Principal Credentials mode. 2. The documentation [here](https://github.com/Azure/Industrial-IoT/blob/release/2.8/docs/deploy/howto-deploy-aks.md#running-with-service-principal-credentials) is saying, the used Helm version is by default 0.4 and the IIoT version is 2.8. So I set the both settings to null in my appsettings.json. Maybe is this wrong? 3. Maybe I'm wrong but this kind of deployment appeared for me very straight-forward. Please let me know if there is a better or more reliable way to deploy the v2.8.
1.0
Error when deploying the version 2.8 via Microsoft.Azure.IIoT.Deployment - Deployment aborts during the deployment step jumpbox-vm-setup with the following error: 'Long running operation failed with status 'Failed'. Additional Info:'At least one resource deployment operation failed. Please list deployment operations for details. Please see https://aka.ms/DeployOperations for usage details.'' I found following error description in the Azure portal for this deployment step: `{"code":"DeploymentFailed","message":"At least one resource deployment operation failed. Please list deployment operations for details. Please see https://aka.ms/DeployOperations for usage details.","details":[{"code":"VMExtensionProvisioningError","message":"VM has reported a failure when processing extension 'scriptextensions_setup'. Error message: \"Enable failed: failed to execute command: command terminated with exit status=1\n[stdout]\nt.com/repos/azure-cli bionic/main amd64 azure-cli all 2.26.1-1~bionic [62.7 MB]\nFetched 62.7 MB in 1s (51.8 MB/s)\nSelecting previously unselected package azure-cli.\r\n(Reading database ... \r(Reading database ... 5%\r(Reading database ... 10%\r(Reading database ... 15%\r(Reading database ... 20%\r(Reading database ... 25%\r(Reading database ... 30%\r(Reading database ... 35%\r(Reading database ... 40%\r(Reading database ... 45%\r(Reading database ... 50%\r(Reading database ... 55%\r(Reading database ... 60%\r(Reading database ... 65%\r(Reading database ... 70%\r(Reading database ... 75%\r(Reading database ... 80%\r(Reading database ... 85%\r(Reading database ... 90%\r(Reading database ... 95%\r(Reading database ... 100%\r(Reading database ... 76955 files and directories currently installed.)\r\nPreparing to unpack .../azure-cli_2.26.1-1~bionic_all.deb ...\r\nUnpacking azure-cli (2.26.1-1~bionic) ...\r\nSetting up azure-cli (2.26.1-1~bionic) ...\r\n[\n {\n \"environmentName\": \"AzureCloud\",\n \"homeTenantId\": \"f76c822d-4d63-4207-ab41-39817e0d7b5d\",\n \"id\": \"56460eb4-5e4d-454b-bf43-5c9884692933\",\n \"isDefault\": true,\n \"managedByTenants\": [],\n \"name\": \"Windows Azure MSDN ? Visual Studio Premium\",\n \"state\": \"Enabled\",\n \"tenantId\": \"f76c822d-4d63-4207-ab41-39817e0d7b5d\",\n \"user\": {\n \"assignedIdentityInfo\": \"MSI\",\n \"name\": \"systemAssignedIdentity\",\n \"type\": \"servicePrincipal\"\n }\n }\n]\nMerged \"akscluster-87776-admin\" as current context in /root/.kube/config\nconfigmap/container-azm-ms-agentconfig created\n\"ingress-nginx\" has been added to your repositories\n\"jetstack\" has been added to your repositories\n\"aiiot\" has been added to your repositories\nHang tight while we grab the latest from your chart repositories...\n...Successfully got an update from the \"aiiot\" chart repository\n...Successfully got an update from the \"ingress-nginx\" chart repository\n...Successfully got an update from the \"jetstack\" chart repository\nUpdate Complete. ⎈Happy Helming!⎈\nnamespace/ingress-nginx created\nNAME: ingress-nginx\nLAST DEPLOYED: Fri Jul 23 13:33:55 2021\nNAMESPACE: ingress-nginx\nSTATUS: deployed\nREVISION: 1\nTEST SUITE: None\nNOTES:\nThe ingress-nginx controller has been installed.\nIt may take a few minutes for the LoadBalancer IP to be available.\nYou can watch the status by running 'kubectl --namespace ingress-nginx get services -o wide -w ingress-nginx-controller'\n\nAn example Ingress that makes use of the controller:\n\n apiVersion: networking.k8s.io/v1beta1\n kind: Ingress\n metadata:\n annotations:\n kubernetes.io/ingress.class: nginx\n name: example\n namespace: foo\n spec:\n rules:\n - host: www.example.com\n http:\n paths:\n - backend:\n serviceName: exampleService\n servicePort: 80\n path: /\n # This section is only required if TLS is to be enabled for the Ingress\n tls:\n - hosts:\n - www.example.com\n secretName: example-tls\n\nIf TLS is enabled for the Ingress, a Secret containing the certificate and key must also be provided:\n\n apiVersion: v1\n kind: Secret\n metadata:\n name: example-tls\n namespace: foo\n data:\n tls.crt: <base64 encoded cert>\n tls.key: <base64 encoded key>\n type: kubernetes.io/tls\nnamespace/cert-manager created\nNAME: cert-manager\nLAST DEPLOYED: Fri Jul 23 13:34:35 2021\nNAMESPACE: cert-manager\nSTATUS: deployed\nREVISION: 1\nTEST SUITE: None\nNOTES:\ncert-manager has been deployed successfully!\n\nIn order to begin issuing certificates, you will need to set up a ClusterIssuer\nor Issuer resource (for example, by creating a 'letsencrypt-staging' issuer).\n\nMore information on the different types of issuers and how to configure them\ncan be found in our documentation:\n\nhttps://cert-manager.io/docs/configuration/\n\nFor information on how to configure cert-manager to automatically provision\nCertificates for Ingress resources, take a look at the `ingress-shim`\ndocumentation:\n\nhttps://cert-manager.io/docs/usage/ingress/\nclusterissuer.cert-manager.io/letsencrypt-prod created\nnamespace/azure-industrial-iot created\n\n[stderr]\nd support levels: https://aka.ms/CLI_refstatus\nWARNING: Please note that \"az acr helm\" commands do not work with Helm 3, but you can still push Helm chart to ACR using a different command flow. For more information, please check out https://docs.microsoft.com/en-us/azure/container-registry/container-registry-helm-repos\nWARNING: Downloading client from https://get.helm.sh/helm-v3.3.4-linux-amd64.tar.gz, it may take a long time...\nWARNING: Successfully installed helm to /usr/local/bin.\nWARNING: Please ensure that /usr/local/bin is in your search PATH, so the `helm` command can be found.\n+ az login --identity\n+ [[ AzureKubernetesServiceClusterAdminRole -eq AzureKubernetesServiceClusterAdminRole ]]\n+ az aks get-credentials --resource-group iiot-test-edmu --name akscluster-87776 --admin\n+ kubectl apply -f /var/lib/waagent/custom-script/download/0/04_oms_agent_configmap.yaml\n+ helm repo add ingress-nginx https://kubernetes.github.io/ingress-nginx\n+ helm repo add jetstack https://charts.jetstack.io\n+ helm repo add aiiot https://microsoft.github.io/charts/repo\n+ helm repo update\n+ kubectl create namespace ingress-nginx\n+ helm install --atomic ingress-nginx ingress-nginx/ingress-nginx --namespace ingress-nginx --version 3.12.0 --timeout 30m0s --set controller.replicaCount=2 --set 'controller.nodeSelector.beta\\.kubernetes\\.io\\/os=linux' --set controller.service.loadBalancerIP=20.103.128.19 --set 'controller.service.annotations.service\\.beta\\.kubernetes\\.io\\/azure-dns-label-name=iiot-test-edmu' --set 'controller.config.compute-full-forward-for=\"true\"' --set 'controller.config.use-forward-headers=\"true\"' --set 'controller.config.proxy-buffer-size=\"32k\"' --set 'controller.config.client-header-buffer-size=\"32k\"' --set controller.metrics.enabled=true --set defaultBackend.enabled=true --set 'defaultBackend.nodeSelector.beta\\.kubernetes\\.io\\/os=linux'\n+ kubectl create namespace cert-manager\n+ helm install --atomic cert-manager jetstack/cert-manager --namespace cert-manager --version v1.1.0 --timeout 30m0s --set installCRDs=true\n+ n=0\n+ iterations=20\n+ [[ 0 -ge 20 ]]\n+ kubectl apply -f /var/lib/waagent/custom-script/download/0/90_letsencrypt_cluster_issuer.yaml\n+ break\n+ [[ 0 -eq 20 ]]\n+ kubectl create namespace azure-industrial-iot\n+ '[' '' = true ']'\n+ helm install --atomic azure-industrial-iot aiiot/azure-industrial-iot --namespace azure-industrial-iot --version --aiiot_image_tag --timeout 30m0s --set image.tag=--aiiot_image_namespace --set loadConfFromKeyVault=true --set azure.tenantId=f76c822d-4d63-4207-ab41-39817e0d7b5d --set azure.keyVault.uri=https://keyvault-11400.vault.azure.net/ --set azure.auth.servicesApp.appId=ec97099b-9cea-4b39-8988-f19621d2cf11 --set azure.auth.servicesApp.secret=8_9_A1D0.0un1F_-v4~3W23Laz25GtO~UO --set externalServiceUrl=https://iiot-test-edmu.westeurope.cloudapp.azure.com --set deployment.microServices.engineeringTool.enabled=true --set deployment.microServices.telemetryCdmProcessor.enabled=true --set deployment.ingress.enabled=true --set 'deployment.ingress.annotations.kubernetes\\.io\\/ingress\\.class=nginx' --set 'deployment.ingress.annotations.nginx\\.ingress\\.kubernetes\\.io\\/affinity=cookie' --set 'deployment.ingress.annotations.nginx\\.ingress\\.kubernetes\\.io\\/session-cookie-name=affinity' --set-string 'deployment.ingress.annotations.nginx\\.ingress\\.kubernetes\\.io\\/session-cookie-expires=14400' --set-string 'deployment.ingress.annotations.nginx\\.ingress\\.kubernetes\\.io\\/session-cookie-max-age=14400' --set-string 'deployment.ingress.annotations.nginx\\.ingress\\.kubernetes\\.io\\/proxy-read-timeout=3600' --set-string 'deployment.ingress.annotations.nginx\\.ingress\\.kubernetes\\.io\\/proxy-send-timeout=3600' --set 'deployment.ingress.annotations.cert-manager\\.io\\/cluster-issuer=letsencrypt-prod' --set 'deployment.ingress.tls[0].hosts[0]=iiot-test-edmu.westeurope.cloudapp.azure.com' --set 'deployment.ingress.tls[0].secretName=tls-secret' --set deployment.ingress.hostName=iiot-test-edmu.westeurope.cloudapp.azure.com\nError: failed to download \"aiiot/azure-industrial-iot\" (hint: running `helm repo update` may help)\n\"\r\n\r\nMore information on troubleshooting is available at https://aka.ms/VMExtensionCSELinuxTroubleshoot "}]}` **To Reproduce** Steps to reproduce the behavior: 1. Prepare service prinsipal to be used by deployment y following instructions [here](https://github.com/Azure/Industrial-IoT/blob/release/2.8/docs/deploy/howto-deploy-aks.md#running-with-service-principal-credentials). 2. Execute Microsoft.Azure.IIoT.Deployment with having the following appsettings,json file in the execution folder (security sensitive data has been replaced by "XXX"): `{ "Logging": { "LogLevel": { "Default": "Debug", "Microsoft": "Debug", "Microsoft.Hosting.Lifetime": "Debug" }, "Console": { "LogLevel": { "Default": "Debug" } } }, // RunMode determines which steps of Industrial IoT solution deployment will // be executed. Valid values are: // // - Full // Performs application registration, deployment of Azure resources // and deployment of microservices into AKS cluster. // // - ApplicationRegistration // Performs only application registration and output JSON for // ApplicationRegistration property bellow. // // - ResourceDeployment // Performs deployment of Azure resources and deployment of // microservices into AKS cluster. // "RunMode": "Full", // Defines authentication details. Different authentication flows will be // used based on which configuration parameters are specified: // // - If ClientId and ClientSecret are provided then Client credentials // authentication flow will be used. This flow requires a Service // Principal. // https://docs.microsoft.com/en-us/azure/active-directory/develop/msal-authentication-flows#client-credentials // // - If ClientId and ClientSecret are not provided then Interactive // authentication flow will be used on Windows. // https://docs.microsoft.com/en-us/azure/active-directory/develop/msal-authentication-flows#interactive // // - If ClientId and ClientSecret are not provided then Device code // authentication flow will be used on Linux and macOS. // https://docs.microsoft.com/en-us/azure/active-directory/develop/msal-authentication-flows#device-code // "Auth": { // Defines which Azure cloud to use. Valid values are: // // - AzureGlobalCloud // - AzureChinaCloud // - AzureUSGovernment // - AzureGermanCloud // "AzureEnvironment": "AzureGlobalCloud", // Id of the tenant to be used. Should be Guid. "TenantId": "XXX", // Details of Service Principal that should be used for authentication. // // - ClientId // ClientId of Service Principal. Other aliases of ClientId are AppId // and ApplicationId. // // - ClientSecret // ClientSecret of Service Principal. It is also sometimes referred // to as password. // "ClientId": "XXX", "ClientSecret": "XXX }, // Id of Azure Subscription within tenant. Should be Guid. "SubscriptionId": "XXX", // Name of the application deployment. Should be globally unique name. // // Note: This name will be used as name of App Service resource, thus // determining its URL as <ApplicationName>.azurewebsites.net. As a result, it // should be a globally unique name. // "ApplicationName": "iiot-test-edmu", // Base URL that will be used for generating RedirectUris for client // application. This is required for enabling client authentication for // use of exposed APIs (including access to Swagger). // // Usually this would be <ApplicationName>.azurewebsites.net // // This parameter is used only in ApplicationRegistration run mode. // "ApplicationUrl": "iiot-test-edmu.azurewebsites.net", "ResourceGroup": { // name of the resource group where azure resources will be created. "name": "iiot-test-edmu", // Determines whether an existing Resource Group should be used or a new one // should be created. "UseExisting": false, // Region where new Resource Group should be created. The following regions // are supported: // // - USEast // - USEast2 // - USWest // - USWest2 // - USCentral // - EuropeNorth // - EuropeWest // - AsiaSouthEast // - AustraliaEast // "Region": "EuropeWest" }, // azure-industrial-iot Helm chart details "Helm": { // Helm repository URL "RepoUrl": "https://microsoft.github.io/charts/repo", // azure-industrial-iot Helm chart version "ChartVersion": null, //"0.4", // Azure IIoT components image tag "ImageTag": null, //"2.8", // Default docker container registry "ContainerRegistryServer": "mcr.microsoft.com" }, // Provides definitions of applications and Service Principals to be used. // Those definitions will be used instead of creating new application // registrations and Service Principals for deployment of Azure resources. // // This is useful in ResourceDeployment mode. Execution in // ApplicationRegistration run mode will output JSON object for this property. // // Properties correspond to that of application registration and Service // Principal manifests. Definition of application properties can be found // here: // // https://docs.microsoft.com/en-us/azure/active-directory/develop/reference-app-manifest // // Application objects should contain the following properties: // // { // "Id": "<guid>", // "DisplayName": "<application name string>", // "IdentifierUris": [ // "<unique user-defined URI for the application>" // ], // "AppId": "<guid>" // } // // Service Principal objects should contain the following // properties: // // { // "Id": "<guid>", // "DisplayName": "<service principal name string>", // } // // ApplicationSecret is client secret (password) of an Application. // //"ApplicationRegistration": { // "ServiceApplication": { ... Application objects ... }, // "ServiceApplicationSP": { ... Application Service Principal objects ... }, // "ServiceApplicationSecret": "", // // "ClientApplication": { ... Application objects ... }, // "ClientApplicationSP": { ... Application Service Principal objects ... }, // "ClientApplicationSecret": "", // // "AksApplication": { ... Application objects ... }, // "AksApplicationSP": { ... Application Service Principal objects ... }, // "AksApplicationSecret": "" //}, // Defines whether to create .env file after deployment or not. // // .env file will contain environment variables necessary for connecting to // microservices of Industrial IoT solution for degugging purposes or for // access via cli client. // "SaveEnvFile": true, // Defines whether to perform cleanup of registered applications and Azure // resources if an error occurs during deployment of Industrial IoT solution. "NoCleanup": false } ` 2. Wait for about 10-15 minutes for error to ocure. **Expected behavior** Deployment should be executed without any errors. **Desktop (please complete the following information):** - OS: Windows 10 - Browser: MS Edge, required and used for Azure Portal only **Additional context** 1. I'm executing the deployment in Service Principal Credentials mode. 2. The documentation [here](https://github.com/Azure/Industrial-IoT/blob/release/2.8/docs/deploy/howto-deploy-aks.md#running-with-service-principal-credentials) is saying, the used Helm version is by default 0.4 and the IIoT version is 2.8. So I set the both settings to null in my appsettings.json. Maybe is this wrong? 3. Maybe I'm wrong but this kind of deployment appeared for me very straight-forward. Please let me know if there is a better or more reliable way to deploy the v2.8.
non_test
error when deploying the version via microsoft azure iiot deployment deployment aborts during the deployment step jumpbox vm setup with the following error long running operation failed with status failed additional info at least one resource deployment operation failed please list deployment operations for details please see for usage details i found following error description in the azure portal for this deployment step code deploymentfailed message at least one resource deployment operation failed please list deployment operations for details please see for usage details details nt com repos azure cli bionic main azure cli all bionic nfetched mb in mb s nselecting previously unselected package azure cli r n reading database r reading database r reading database r reading database r reading database r reading database r reading database r reading database r reading database r reading database r reading database r reading database r reading database r reading database r reading database r reading database r reading database r reading database r reading database r reading database r reading database r reading database files and directories currently installed r npreparing to unpack azure cli bionic all deb r nunpacking azure cli bionic r nsetting up azure cli bionic r n n name windows azure msdn visual studio premium n state enabled n tenantid n user n assignedidentityinfo msi n name systemassignedidentity n type serviceprincipal n n n nmerged akscluster admin as current context in root kube config nconfigmap container azm ms agentconfig created n ingress nginx has been added to your repositories n jetstack has been added to your repositories n aiiot has been added to your repositories nhang tight while we grab the latest from your chart repositories n successfully got an update from the aiiot chart repository n successfully got an update from the ingress nginx chart repository n successfully got an update from the jetstack chart repository nupdate complete ⎈happy helming ⎈ nnamespace ingress nginx created nname ingress nginx nlast deployed fri jul nnamespace ingress nginx nstatus deployed nrevision ntest suite none nnotes nthe ingress nginx controller has been installed nit may take a few minutes for the loadbalancer ip to be available nyou can watch the status by running kubectl namespace ingress nginx get services o wide w ingress nginx controller n nan example ingress that makes use of the controller n n apiversion networking io n kind ingress n metadata n annotations n kubernetes io ingress class nginx n name example n namespace foo n spec n rules n host http n paths n backend n servicename exampleservice n serviceport n path n this section is only required if tls is to be enabled for the ingress n tls n hosts n secretname example tls n nif tls is enabled for the ingress a secret containing the certificate and key must also be provided n n apiversion n kind secret n metadata n name example tls n namespace foo n data n tls crt n tls key n type kubernetes io tls nnamespace cert manager created nname cert manager nlast deployed fri jul nnamespace cert manager nstatus deployed nrevision ntest suite none nnotes ncert manager has been deployed successfully n nin order to begin issuing certificates you will need to set up a clusterissuer nor issuer resource for example by creating a letsencrypt staging issuer n nmore information on the different types of issuers and how to configure them ncan be found in our documentation n n information on how to configure cert manager to automatically provision ncertificates for ingress resources take a look at the ingress shim ndocumentation n n created nnamespace azure industrial iot created n n nd support levels please note that az acr helm commands do not work with helm but you can still push helm chart to acr using a different command flow for more information please check out downloading client from it may take a long time nwarning successfully installed helm to usr local bin nwarning please ensure that usr local bin is in your search path so the helm command can be found n az login identity n n az aks get credentials resource group iiot test edmu name akscluster admin n kubectl apply f var lib waagent custom script download oms agent configmap yaml n helm repo add ingress nginx helm repo add jetstack helm repo add aiiot helm repo update n kubectl create namespace ingress nginx n helm install atomic ingress nginx ingress nginx ingress nginx namespace ingress nginx version timeout set controller replicacount set controller nodeselector beta kubernetes io os linux set controller service loadbalancerip set controller service annotations service beta kubernetes io azure dns label name iiot test edmu set controller config compute full forward for true set controller config use forward headers true set controller config proxy buffer size set controller config client header buffer size set controller metrics enabled true set defaultbackend enabled true set defaultbackend nodeselector beta kubernetes io os linux n kubectl create namespace cert manager n helm install atomic cert manager jetstack cert manager namespace cert manager version timeout set installcrds true n n n iterations n n kubectl apply f var lib waagent custom script download letsencrypt cluster issuer yaml n break n n kubectl create namespace azure industrial iot n n helm install atomic azure industrial iot aiiot azure industrial iot namespace azure industrial iot version aiiot image tag timeout set image tag aiiot image namespace set loadconffromkeyvault true set azure tenantid set azure keyvault uri set azure auth servicesapp appid set azure auth servicesapp secret uo set externalserviceurl set deployment microservices engineeringtool enabled true set deployment microservices telemetrycdmprocessor enabled true set deployment ingress enabled true set deployment ingress annotations kubernetes io ingress class nginx set deployment ingress annotations nginx ingress kubernetes io affinity cookie set deployment ingress annotations nginx ingress kubernetes io session cookie name affinity set string deployment ingress annotations nginx ingress kubernetes io session cookie expires set string deployment ingress annotations nginx ingress kubernetes io session cookie max age set string deployment ingress annotations nginx ingress kubernetes io proxy read timeout set string deployment ingress annotations nginx ingress kubernetes io proxy send timeout set deployment ingress annotations cert manager io cluster issuer letsencrypt prod set deployment ingress tls hosts iiot test edmu westeurope cloudapp azure com set deployment ingress tls secretname tls secret set deployment ingress hostname iiot test edmu westeurope cloudapp azure com nerror failed to download aiiot azure industrial iot hint running helm repo update may help n r n r nmore information on troubleshooting is available at to reproduce steps to reproduce the behavior prepare service prinsipal to be used by deployment y following instructions execute microsoft azure iiot deployment with having the following appsettings json file in the execution folder security sensitive data has been replaced by xxx logging loglevel default debug microsoft debug microsoft hosting lifetime debug console loglevel default debug runmode determines which steps of industrial iot solution deployment will be executed valid values are full performs application registration deployment of azure resources and deployment of microservices into aks cluster applicationregistration performs only application registration and output json for applicationregistration property bellow resourcedeployment performs deployment of azure resources and deployment of microservices into aks cluster runmode full defines authentication details different authentication flows will be used based on which configuration parameters are specified if clientid and clientsecret are provided then client credentials authentication flow will be used this flow requires a service principal if clientid and clientsecret are not provided then interactive authentication flow will be used on windows if clientid and clientsecret are not provided then device code authentication flow will be used on linux and macos auth defines which azure cloud to use valid values are azureglobalcloud azurechinacloud azureusgovernment azuregermancloud azureenvironment azureglobalcloud id of the tenant to be used should be guid tenantid xxx details of service principal that should be used for authentication clientid clientid of service principal other aliases of clientid are appid and applicationid clientsecret clientsecret of service principal it is also sometimes referred to as password clientid xxx clientsecret xxx id of azure subscription within tenant should be guid subscriptionid xxx name of the application deployment should be globally unique name note this name will be used as name of app service resource thus determining its url as azurewebsites net as a result it should be a globally unique name applicationname iiot test edmu base url that will be used for generating redirecturis for client application this is required for enabling client authentication for use of exposed apis including access to swagger usually this would be azurewebsites net this parameter is used only in applicationregistration run mode applicationurl iiot test edmu azurewebsites net resourcegroup name of the resource group where azure resources will be created name iiot test edmu determines whether an existing resource group should be used or a new one should be created useexisting false region where new resource group should be created the following regions are supported useast uswest uscentral europenorth europewest asiasoutheast australiaeast region europewest azure industrial iot helm chart details helm helm repository url repourl azure industrial iot helm chart version chartversion null azure iiot components image tag imagetag null default docker container registry containerregistryserver mcr microsoft com provides definitions of applications and service principals to be used those definitions will be used instead of creating new application registrations and service principals for deployment of azure resources this is useful in resourcedeployment mode execution in applicationregistration run mode will output json object for this property properties correspond to that of application registration and service principal manifests definition of application properties can be found here application objects should contain the following properties id displayname identifieruris appid service principal objects should contain the following properties id displayname applicationsecret is client secret password of an application applicationregistration serviceapplication application objects serviceapplicationsp application service principal objects serviceapplicationsecret clientapplication application objects clientapplicationsp application service principal objects clientapplicationsecret aksapplication application objects aksapplicationsp application service principal objects aksapplicationsecret defines whether to create env file after deployment or not env file will contain environment variables necessary for connecting to microservices of industrial iot solution for degugging purposes or for access via cli client saveenvfile true defines whether to perform cleanup of registered applications and azure resources if an error occurs during deployment of industrial iot solution nocleanup false wait for about minutes for error to ocure expected behavior deployment should be executed without any errors desktop please complete the following information os windows browser ms edge required and used for azure portal only additional context i m executing the deployment in service principal credentials mode the documentation is saying the used helm version is by default and the iiot version is so i set the both settings to null in my appsettings json maybe is this wrong maybe i m wrong but this kind of deployment appeared for me very straight forward please let me know if there is a better or more reliable way to deploy the
0
150,491
5,773,713,435
IssuesEvent
2017-04-28 03:28:25
chartjs/Chart.js
https://api.github.com/repos/chartjs/Chart.js
reopened
Time Scale should align to beginning of time period
Category: Enhancement Help wanted Priority: p1
This can be reproduced with the current samples in master ## Current Behavior Samples show: * Apr 26 9PM, Apr 27 9AM, Apr 27 9PM, etc. * Apr 26 9PM, Apr 27 3AM, Apr 27 9AM, etc. ## Expected Behavior It would be nicer if these instead said: * Apr 26, 12PM, Apr 27, 12PM, Apr 28, etc. * Apr 26, 6AM, 12PM, 6PM, Apr 27, etc. It's much easier to read the chart when it aligns on full days (or hours, weeks, months, etc.). E.g. in this case we should always try to have some labels at midnight as 9am and 9pm are weird times to align our labels to. Also, much of the information is repetitive. You only need to print the major time period when you hit it and only need to print the minor time period in between. We should at least have an option that allows for this if we don't always do it (and I think setting it to true by default would be nice) ## Steps to Reproduce (for bugs) 1. `git clone git@github.com:chartjs/Chart.js.git` 2. `npm install` 3. `gulp build` 4. Open samples/scales/time/combo.html and samples/scales/time/line-point-data.html ## Examples Here are a couple examples from other time series charts ![example1](https://cloud.githubusercontent.com/assets/322311/25468351/30882e68-2aca-11e7-9ec7-5fa99832cd47.png) ![example2](https://cloud.githubusercontent.com/assets/322311/25468350/30861754-2aca-11e7-92ff-ae9c1ad459c3.png)
1.0
Time Scale should align to beginning of time period - This can be reproduced with the current samples in master ## Current Behavior Samples show: * Apr 26 9PM, Apr 27 9AM, Apr 27 9PM, etc. * Apr 26 9PM, Apr 27 3AM, Apr 27 9AM, etc. ## Expected Behavior It would be nicer if these instead said: * Apr 26, 12PM, Apr 27, 12PM, Apr 28, etc. * Apr 26, 6AM, 12PM, 6PM, Apr 27, etc. It's much easier to read the chart when it aligns on full days (or hours, weeks, months, etc.). E.g. in this case we should always try to have some labels at midnight as 9am and 9pm are weird times to align our labels to. Also, much of the information is repetitive. You only need to print the major time period when you hit it and only need to print the minor time period in between. We should at least have an option that allows for this if we don't always do it (and I think setting it to true by default would be nice) ## Steps to Reproduce (for bugs) 1. `git clone git@github.com:chartjs/Chart.js.git` 2. `npm install` 3. `gulp build` 4. Open samples/scales/time/combo.html and samples/scales/time/line-point-data.html ## Examples Here are a couple examples from other time series charts ![example1](https://cloud.githubusercontent.com/assets/322311/25468351/30882e68-2aca-11e7-9ec7-5fa99832cd47.png) ![example2](https://cloud.githubusercontent.com/assets/322311/25468350/30861754-2aca-11e7-92ff-ae9c1ad459c3.png)
non_test
time scale should align to beginning of time period this can be reproduced with the current samples in master current behavior samples show apr apr apr etc apr apr apr etc expected behavior it would be nicer if these instead said apr apr apr etc apr apr etc it s much easier to read the chart when it aligns on full days or hours weeks months etc e g in this case we should always try to have some labels at midnight as and are weird times to align our labels to also much of the information is repetitive you only need to print the major time period when you hit it and only need to print the minor time period in between we should at least have an option that allows for this if we don t always do it and i think setting it to true by default would be nice steps to reproduce for bugs git clone git github com chartjs chart js git npm install gulp build open samples scales time combo html and samples scales time line point data html examples here are a couple examples from other time series charts
0
409,337
27,733,952,945
IssuesEvent
2023-03-15 09:58:04
contao-themes-net/nature-theme-bundle
https://api.github.com/repos/contao-themes-net/nature-theme-bundle
closed
Keep your Megamenue opened at first Klick on it
documentation
## Description <!-- Provide sample code, useful information, possible solutions and examples whenever possible. --> **sorry, not clever enough!** <!-- A clear and concise description of what you want to happen. --> Hi, I hope that is the right place for my request! I'm just switching over from Joomla and I think that your template will meet my demands. As I'm total new with this stuff, I would like to ask a question about your Megamenue I noticed when hoovering over the menu entry module after clicking Megamenue the Megamenue is displayed until you leave the menu entry - Right? What I want to achieve is: When adding new Main menu entry and the visitor of my homepage klicks on it the Megamenue shall be opened AND stays open so even if the visitor when visiting some sub entry of the Megamenue is able to see the still opened Megamenu sub entries and easily can switch to another subentry if he does not find the desired information on the first click. Without going back to open the Megamenue again I hope You can understand my request. This menu **should stay opened** on first click ![image](https://user-images.githubusercontent.com/4120266/222808666-45d3bf99-cf84-47f0-93df-e37c00e61477.png) Hope for Instructions Many THX
1.0
Keep your Megamenue opened at first Klick on it - ## Description <!-- Provide sample code, useful information, possible solutions and examples whenever possible. --> **sorry, not clever enough!** <!-- A clear and concise description of what you want to happen. --> Hi, I hope that is the right place for my request! I'm just switching over from Joomla and I think that your template will meet my demands. As I'm total new with this stuff, I would like to ask a question about your Megamenue I noticed when hoovering over the menu entry module after clicking Megamenue the Megamenue is displayed until you leave the menu entry - Right? What I want to achieve is: When adding new Main menu entry and the visitor of my homepage klicks on it the Megamenue shall be opened AND stays open so even if the visitor when visiting some sub entry of the Megamenue is able to see the still opened Megamenu sub entries and easily can switch to another subentry if he does not find the desired information on the first click. Without going back to open the Megamenue again I hope You can understand my request. This menu **should stay opened** on first click ![image](https://user-images.githubusercontent.com/4120266/222808666-45d3bf99-cf84-47f0-93df-e37c00e61477.png) Hope for Instructions Many THX
non_test
keep your megamenue opened at first klick on it description sorry not clever enough hi i hope that is the right place for my request i m just switching over from joomla and i think that your template will meet my demands as i m total new with this stuff i would like to ask a question about your megamenue i noticed when hoovering over the menu entry module after clicking megamenue the megamenue is displayed until you leave the menu entry right what i want to achieve is when adding new main menu entry and the visitor of my homepage klicks on it the megamenue shall be opened and stays open so even if the visitor when visiting some sub entry of the megamenue is able to see the still opened megamenu sub entries and easily can switch to another subentry if he does not find the desired information on the first click without going back to open the megamenue again i hope you can understand my request this menu should stay opened on first click hope for instructions many thx
0
29,897
4,540,645,603
IssuesEvent
2016-09-09 15:15:00
USStateDept/diplopedia
https://api.github.com/repos/USStateDept/diplopedia
closed
Install and test Collection (pdf extension) on the EC2 Instance
Extensions Testing
https://www.mediawiki.org/wiki/Extension:Collection Since we have a wiki which that is not accessible from the outside, we need to install our own render server. The server is included with mwlib and can be used as a stand-alone HTTP server (which is the default protocol) or as FastCGI or SCGI server or as a CGI script. #29 - [ ] [Basic Prerequisites](http://mwlib.readthedocs.org/en/latest/installation.html#basic-prerequisites) C compiler, a C++ compiler, make and the python development headers installed. mwlib will work with python 2.6 and 2.7. mwlib requires the python imaging library (pil) and the python lxml package. In order to compile pil from source the libjpeg, zlib, freetype and lcms header files and libraries must be present on the system. Compiling lxml requires the libxslt and libxml2 header files and libraries. #30 - [ ] [Installation of mwlib with pip install](http://mwlib.readthedocs.org/en/latest/installation.html#installation-of-mwlib-with-pip-easy-install) and of [mwlib.rl](http://mwlib.readthedocs.org/en/latest/installation.html#installation-of-mwlib-rl-with-pip-easy-install) #30 - [ ] Testing of installation #31 - [ ] [Install and configure rendering server](http://mwlib.readthedocs.org/en/latest/renderserver.html#mwlib-renderserver) set $wgCollectionMWServeURL (URL of server) in local settings
1.0
Install and test Collection (pdf extension) on the EC2 Instance - https://www.mediawiki.org/wiki/Extension:Collection Since we have a wiki which that is not accessible from the outside, we need to install our own render server. The server is included with mwlib and can be used as a stand-alone HTTP server (which is the default protocol) or as FastCGI or SCGI server or as a CGI script. #29 - [ ] [Basic Prerequisites](http://mwlib.readthedocs.org/en/latest/installation.html#basic-prerequisites) C compiler, a C++ compiler, make and the python development headers installed. mwlib will work with python 2.6 and 2.7. mwlib requires the python imaging library (pil) and the python lxml package. In order to compile pil from source the libjpeg, zlib, freetype and lcms header files and libraries must be present on the system. Compiling lxml requires the libxslt and libxml2 header files and libraries. #30 - [ ] [Installation of mwlib with pip install](http://mwlib.readthedocs.org/en/latest/installation.html#installation-of-mwlib-with-pip-easy-install) and of [mwlib.rl](http://mwlib.readthedocs.org/en/latest/installation.html#installation-of-mwlib-rl-with-pip-easy-install) #30 - [ ] Testing of installation #31 - [ ] [Install and configure rendering server](http://mwlib.readthedocs.org/en/latest/renderserver.html#mwlib-renderserver) set $wgCollectionMWServeURL (URL of server) in local settings
test
install and test collection pdf extension on the instance since we have a wiki which that is not accessible from the outside we need to install our own render server the server is included with mwlib and can be used as a stand alone http server which is the default protocol or as fastcgi or scgi server or as a cgi script c compiler a c compiler make and the python development headers installed mwlib will work with python and mwlib requires the python imaging library pil and the python lxml package in order to compile pil from source the libjpeg zlib freetype and lcms header files and libraries must be present on the system compiling lxml requires the libxslt and header files and libraries and of testing of installation set wgcollectionmwserveurl url of server in local settings
1
28,534
4,417,312,075
IssuesEvent
2016-08-15 04:04:38
Becksteinlab/MDPOW
https://api.github.com/repos/Becksteinlab/MDPOW
closed
coverage should not contain the tests
testing
PR #39 adds testing with Gromacs 4 and Gromacs 5 (yay!). However, coverage also analyses coverage of the tests themselves. That's not helpful. All tests ought to be excluded from coverage reporting. There should be some simple settings for `coverage` in the travis.yml file that exclude tests.
1.0
coverage should not contain the tests - PR #39 adds testing with Gromacs 4 and Gromacs 5 (yay!). However, coverage also analyses coverage of the tests themselves. That's not helpful. All tests ought to be excluded from coverage reporting. There should be some simple settings for `coverage` in the travis.yml file that exclude tests.
test
coverage should not contain the tests pr adds testing with gromacs and gromacs yay however coverage also analyses coverage of the tests themselves that s not helpful all tests ought to be excluded from coverage reporting there should be some simple settings for coverage in the travis yml file that exclude tests
1
258,662
22,337,730,085
IssuesEvent
2022-06-14 20:18:03
status-im/status-desktop
https://api.github.com/repos/status-im/status-desktop
closed
Can't import community key
bug tested E:Bugfixes E:Communities
### Description 1. enable communtites 2. open communities dialog 3. click three dots at the top -> import communtiy 4. paste this `0x8f097d9d3dd4b936062a25d03c6448f1a8f5639ce82e22057563dfedfbb34f37` and confirm As result, the bench ball of death shown , and after all, the community is not imported
1.0
Can't import community key - ### Description 1. enable communtites 2. open communities dialog 3. click three dots at the top -> import communtiy 4. paste this `0x8f097d9d3dd4b936062a25d03c6448f1a8f5639ce82e22057563dfedfbb34f37` and confirm As result, the bench ball of death shown , and after all, the community is not imported
test
can t import community key description enable communtites open communities dialog click three dots at the top import communtiy paste this and confirm as result the bench ball of death shown and after all the community is not imported
1
33,016
2,761,380,519
IssuesEvent
2015-04-28 16:56:21
dobidoberman1/Mystic-5.4.8-Bug-Tracker
https://api.github.com/repos/dobidoberman1/Mystic-5.4.8-Bug-Tracker
closed
Loot window
Low Priority
Bug name: Loot window items not stacking Bug Priority: low Bug Type: open world Bug description: Items in the loot window that are from multiple bodies do not stack. How is it supposed to work?: Like items should stack.
1.0
Loot window - Bug name: Loot window items not stacking Bug Priority: low Bug Type: open world Bug description: Items in the loot window that are from multiple bodies do not stack. How is it supposed to work?: Like items should stack.
non_test
loot window bug name loot window items not stacking bug priority low bug type open world bug description items in the loot window that are from multiple bodies do not stack how is it supposed to work like items should stack
0
306,885
26,504,392,127
IssuesEvent
2023-01-18 12:48:30
elastic/apm-pipeline-library
https://api.github.com/repos/elastic/apm-pipeline-library
closed
Flaky Test [Check pre-commit / codespell – pre_commit.lint]
flaky-test ci-reported
## Flaky Test * **Test Name:** `Check pre-commit / codespell – pre_commit.lint` * **Artifact Link:** https://apm-ci.elastic.co/blue/organizations/jenkins/apm-shared%2Fapm-pipeline-library-mbp%2Fmain/detail/main/205/ * **PR:** None * **Commit:** 6cfb9198f664e8ca318a8747572f5439a2f43f87 ### Error details ``` error ``` ### Stack Trace ``` ![CDATA[- hook id: codespell - exit code: 65 CHANGELOG.md:23: timming ==&gt; timing, trimming ]] ```
1.0
Flaky Test [Check pre-commit / codespell – pre_commit.lint] - ## Flaky Test * **Test Name:** `Check pre-commit / codespell – pre_commit.lint` * **Artifact Link:** https://apm-ci.elastic.co/blue/organizations/jenkins/apm-shared%2Fapm-pipeline-library-mbp%2Fmain/detail/main/205/ * **PR:** None * **Commit:** 6cfb9198f664e8ca318a8747572f5439a2f43f87 ### Error details ``` error ``` ### Stack Trace ``` ![CDATA[- hook id: codespell - exit code: 65 CHANGELOG.md:23: timming ==&gt; timing, trimming ]] ```
test
flaky test flaky test test name check pre commit codespell – pre commit lint artifact link pr none commit error details error stack trace cdata hook id codespell exit code changelog md timming gt timing trimming
1
299,790
22,623,432,320
IssuesEvent
2022-06-30 08:36:12
sighupio/fury-kubernetes-keycloak
https://api.github.com/repos/sighupio/fury-kubernetes-keycloak
closed
Deprecate this addon in favour of the new auth
documentation deprecation
We should deprecate this addon module in favour of the new `fury-kubernetes-auth` addon module, and switch to the Keycloak (Quarkus) Operator: https://github.com/keycloak/keycloak/tree/main/operator
1.0
Deprecate this addon in favour of the new auth - We should deprecate this addon module in favour of the new `fury-kubernetes-auth` addon module, and switch to the Keycloak (Quarkus) Operator: https://github.com/keycloak/keycloak/tree/main/operator
non_test
deprecate this addon in favour of the new auth we should deprecate this addon module in favour of the new fury kubernetes auth addon module and switch to the keycloak quarkus operator
0
6,121
3,333,385,623
IssuesEvent
2015-11-12 01:00:06
gitec-webteam/gitec-webteam.github.io
https://api.github.com/repos/gitec-webteam/gitec-webteam.github.io
opened
Setup MySQL Database
Code
Need a MySQL Database of the drug information. Having a database we can use the search bar and we will not need 50 different drug pages. Instead we can have one page the quires the database for the right information.
1.0
Setup MySQL Database - Need a MySQL Database of the drug information. Having a database we can use the search bar and we will not need 50 different drug pages. Instead we can have one page the quires the database for the right information.
non_test
setup mysql database need a mysql database of the drug information having a database we can use the search bar and we will not need different drug pages instead we can have one page the quires the database for the right information
0
545,805
15,963,737,582
IssuesEvent
2021-04-16 04:42:12
amqkv/SOEN-341
https://api.github.com/repos/amqkv/SOEN-341
closed
Implement general tests for post feed and front end
1 High Priority Medium Risk Task
**Description** Figure out how to implement the test case for the post feed Feed should only contain posts from current user & users followed (epic #6) Implement tests for Each Components (templates) and related functions (logout, etc).
1.0
Implement general tests for post feed and front end - **Description** Figure out how to implement the test case for the post feed Feed should only contain posts from current user & users followed (epic #6) Implement tests for Each Components (templates) and related functions (logout, etc).
non_test
implement general tests for post feed and front end description figure out how to implement the test case for the post feed feed should only contain posts from current user users followed epic implement tests for each components templates and related functions logout etc
0
170,224
26,920,911,175
IssuesEvent
2023-02-07 10:22:49
authgear/authgear-server
https://api.github.com/repos/authgear/authgear-server
closed
Support customise "From" email addresses for emails
new features enhancement area/portal ui-design-required
Allow customization for the following: * Forgot Password Email * Passwordless Signup * Passwordless Login For the following parameters: * From * Reply-To * Subject If SMTP server is not customize (pending #919), and using our built-in Postmark sender, it is expected that we need users to verify their sender domain via https://postmarkapp.com/developer/api/domains-api first (need UI/UX Design)
1.0
Support customise "From" email addresses for emails - Allow customization for the following: * Forgot Password Email * Passwordless Signup * Passwordless Login For the following parameters: * From * Reply-To * Subject If SMTP server is not customize (pending #919), and using our built-in Postmark sender, it is expected that we need users to verify their sender domain via https://postmarkapp.com/developer/api/domains-api first (need UI/UX Design)
non_test
support customise from email addresses for emails allow customization for the following forgot password email passwordless signup passwordless login for the following parameters from reply to subject if smtp server is not customize pending and using our built in postmark sender it is expected that we need users to verify their sender domain via first need ui ux design
0
261,289
22,717,058,835
IssuesEvent
2022-07-06 03:51:06
metaplex-foundation/metaplex
https://api.github.com/repos/metaplex-foundation/metaplex
closed
[Bug]: mint_multiple_tokens : restart after fail transaction ?
needs tests bug Stale
### Which package is this bug report for? candy machine cli ### Issue description When i use mint_multiple_tokens, if there is a failed transaction (timeout for example), it returns an error and i have to run the command again. The problem here is that i get this error after a few mints (< 10 mints), and i have thousands nft to mint (30k !!). Is there a way to run this command, and automatically restart if there is a failed transaction ? ### Command ```shell ts-node ~/metaplex/js/packages/cli/src/candy-machine-v2-cli.ts mint_multiple_tokens -e mainnet-beta -k .config/solana/id.json --number=1000 --rpc-url=.... ``` ### Relevant log output _No response_ ### Operating system Linux ### Priority this issue should have Medium (should be fixed soon) ### Check the Docs First - [x] I have checked the docs and it didn't solve my issue
1.0
[Bug]: mint_multiple_tokens : restart after fail transaction ? - ### Which package is this bug report for? candy machine cli ### Issue description When i use mint_multiple_tokens, if there is a failed transaction (timeout for example), it returns an error and i have to run the command again. The problem here is that i get this error after a few mints (< 10 mints), and i have thousands nft to mint (30k !!). Is there a way to run this command, and automatically restart if there is a failed transaction ? ### Command ```shell ts-node ~/metaplex/js/packages/cli/src/candy-machine-v2-cli.ts mint_multiple_tokens -e mainnet-beta -k .config/solana/id.json --number=1000 --rpc-url=.... ``` ### Relevant log output _No response_ ### Operating system Linux ### Priority this issue should have Medium (should be fixed soon) ### Check the Docs First - [x] I have checked the docs and it didn't solve my issue
test
mint multiple tokens restart after fail transaction which package is this bug report for candy machine cli issue description when i use mint multiple tokens if there is a failed transaction timeout for example it returns an error and i have to run the command again the problem here is that i get this error after a few mints mints and i have thousands nft to mint is there a way to run this command and automatically restart if there is a failed transaction command shell ts node metaplex js packages cli src candy machine cli ts mint multiple tokens e mainnet beta k config solana id json number rpc url relevant log output no response operating system linux priority this issue should have medium should be fixed soon check the docs first i have checked the docs and it didn t solve my issue
1
5,895
21,578,734,022
IssuesEvent
2022-05-02 16:18:52
rancher-sandbox/rancher-desktop
https://api.github.com/repos/rancher-sandbox/rancher-desktop
opened
Incorrect error message when `rdctl start` is run while a session is already running
kind/bug area/automation
If you run `rdctl start` (may be by mistake), when you have a session running already, the command prints below message which is not correct. ``` rdctl start Error: set command: no settings to change were given Usage: rdctl start [flags] Flags: --container-engine string Set engine to containerd or moby (aka docker). --flannel-enabled Control whether flannel is enabled. Use to disable flannel so you can install your own CNI. (default true) -h, --help help for start --kubernetes-enabled Control whether kubernetes runs in the backend. --kubernetes-version string Choose which version of kubernetes to run. -p, --path string Path to main executable. Global Flags: --config-path string config file (default C:\Users\GunasekharMatamalam\AppData\Roaming\rancher-desktop\rd-engine.json) --host string default is localhost; most useful for WSL --password string overrides the password setting in the config file --port string overrides the port setting in the config file --user string overrides the user setting in the config file ```
1.0
Incorrect error message when `rdctl start` is run while a session is already running - If you run `rdctl start` (may be by mistake), when you have a session running already, the command prints below message which is not correct. ``` rdctl start Error: set command: no settings to change were given Usage: rdctl start [flags] Flags: --container-engine string Set engine to containerd or moby (aka docker). --flannel-enabled Control whether flannel is enabled. Use to disable flannel so you can install your own CNI. (default true) -h, --help help for start --kubernetes-enabled Control whether kubernetes runs in the backend. --kubernetes-version string Choose which version of kubernetes to run. -p, --path string Path to main executable. Global Flags: --config-path string config file (default C:\Users\GunasekharMatamalam\AppData\Roaming\rancher-desktop\rd-engine.json) --host string default is localhost; most useful for WSL --password string overrides the password setting in the config file --port string overrides the port setting in the config file --user string overrides the user setting in the config file ```
non_test
incorrect error message when rdctl start is run while a session is already running if you run rdctl start may be by mistake when you have a session running already the command prints below message which is not correct rdctl start error set command no settings to change were given usage rdctl start flags container engine string set engine to containerd or moby aka docker flannel enabled control whether flannel is enabled use to disable flannel so you can install your own cni default true h help help for start kubernetes enabled control whether kubernetes runs in the backend kubernetes version string choose which version of kubernetes to run p path string path to main executable global flags config path string config file default c users gunasekharmatamalam appdata roaming rancher desktop rd engine json host string default is localhost most useful for wsl password string overrides the password setting in the config file port string overrides the port setting in the config file user string overrides the user setting in the config file
0
230,486
18,672,337,502
IssuesEvent
2021-10-30 23:49:46
Airthics/denvair
https://api.github.com/repos/Airthics/denvair
opened
✅ Test kubernetes.sh script
✅ Test
**Describe the solution you'd like** Test kubernetes.sh shell script in order to check if installation can be done or not.
1.0
✅ Test kubernetes.sh script - **Describe the solution you'd like** Test kubernetes.sh shell script in order to check if installation can be done or not.
test
✅ test kubernetes sh script describe the solution you d like test kubernetes sh shell script in order to check if installation can be done or not
1
236,921
19,585,789,677
IssuesEvent
2022-01-05 06:35:21
clubcompass/clubcompass.net
https://api.github.com/repos/clubcompass/clubcompass.net
closed
Database Seeding Script
:cloud: backend 🚨 testing
- Script to seed the database, needs to prompt user what to seed - should include: seed 70 clubs from spreadsheet, seed tags, create 100 users, signup to random clubs / president of random clubs,
1.0
Database Seeding Script - - Script to seed the database, needs to prompt user what to seed - should include: seed 70 clubs from spreadsheet, seed tags, create 100 users, signup to random clubs / president of random clubs,
test
database seeding script script to seed the database needs to prompt user what to seed should include seed clubs from spreadsheet seed tags create users signup to random clubs president of random clubs
1
648,527
21,188,494,425
IssuesEvent
2022-04-08 14:57:04
webcompat/web-bugs
https://api.github.com/repos/webcompat/web-bugs
closed
slate.com - see bug description
status-needsinfo browser-firefox priority-normal type-tracking-protection-strict engine-gecko
<!-- @browser: Firefox 99.0 --> <!-- @ua_header: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0 --> <!-- @reported_with: unknown --> **URL**: https://slate.com/technology/2022/04/martha-stewart-dead-cat-instagram.html **Browser / Version**: Firefox 99.0 **Operating System**: Android/Windows 10 **Tested Another Browser**: Yes Chrome **Problem type**: Something else **Description**: Instagram embeds don't work **Steps to Reproduce**: Instagram embeds don't load. Just says "view post on instagram". (Enhanced protection disabled in my case) <details> <summary>Browser Configuration</summary> <ul> <li>None</li> </ul> </details> _From [webcompat.com](https://webcompat.com/) with ❤️_
1.0
slate.com - see bug description - <!-- @browser: Firefox 99.0 --> <!-- @ua_header: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:98.0) Gecko/20100101 Firefox/98.0 --> <!-- @reported_with: unknown --> **URL**: https://slate.com/technology/2022/04/martha-stewart-dead-cat-instagram.html **Browser / Version**: Firefox 99.0 **Operating System**: Android/Windows 10 **Tested Another Browser**: Yes Chrome **Problem type**: Something else **Description**: Instagram embeds don't work **Steps to Reproduce**: Instagram embeds don't load. Just says "view post on instagram". (Enhanced protection disabled in my case) <details> <summary>Browser Configuration</summary> <ul> <li>None</li> </ul> </details> _From [webcompat.com](https://webcompat.com/) with ❤️_
non_test
slate com see bug description url browser version firefox operating system android windows tested another browser yes chrome problem type something else description instagram embeds don t work steps to reproduce instagram embeds don t load just says view post on instagram enhanced protection disabled in my case browser configuration none from with ❤️
0
316,585
27,168,389,844
IssuesEvent
2023-02-17 17:07:19
filecoin-project/boost
https://api.github.com/repos/filecoin-project/boost
closed
booster-bitswap testing
kind/test area/retrieval
Test: 1) on sofia miner 2) SPX 3) a few evergreen participants (could be same as SPX participants) Testing should confirm: 1) functionality 2) minimal interruptions to other processes (data onboarding and sealing) 3) what maximum load can be sustained based on requirements here - https://www.notion.so/pl-strflt/Bitswap-Retrieval-Requirements-WIP-ed17a22b006e4ba79c9ca9ec85fcf93e
1.0
booster-bitswap testing - Test: 1) on sofia miner 2) SPX 3) a few evergreen participants (could be same as SPX participants) Testing should confirm: 1) functionality 2) minimal interruptions to other processes (data onboarding and sealing) 3) what maximum load can be sustained based on requirements here - https://www.notion.so/pl-strflt/Bitswap-Retrieval-Requirements-WIP-ed17a22b006e4ba79c9ca9ec85fcf93e
test
booster bitswap testing test on sofia miner spx a few evergreen participants could be same as spx participants testing should confirm functionality minimal interruptions to other processes data onboarding and sealing what maximum load can be sustained based on requirements here
1
201,531
15,211,727,141
IssuesEvent
2021-02-17 09:28:36
Azure/sonic-mgmt
https://api.github.com/repos/Azure/sonic-mgmt
closed
Data Plane Utilities
Dual ToR Test Dev :gemini: P0
Methods to send and verify data plane traffic: 1. Send traffic from the T1 to the server after performing some action. Verify: server received packet in time, did/did not receive IP-in-IP tunnel packet on T1 2. Send traffic from the server to the T1 after performing some action. Verify: T1 received packet in time Depends on #2754, #2816
1.0
Data Plane Utilities - Methods to send and verify data plane traffic: 1. Send traffic from the T1 to the server after performing some action. Verify: server received packet in time, did/did not receive IP-in-IP tunnel packet on T1 2. Send traffic from the server to the T1 after performing some action. Verify: T1 received packet in time Depends on #2754, #2816
test
data plane utilities methods to send and verify data plane traffic send traffic from the to the server after performing some action verify server received packet in time did did not receive ip in ip tunnel packet on send traffic from the server to the after performing some action verify received packet in time depends on
1
689,470
23,621,834,462
IssuesEvent
2022-08-24 21:26:29
choderalab/perses
https://api.github.com/repos/choderalab/perses
opened
`RelativeFEPSetup` cannot deal with list of ligand input files
bug :bug: priority: high effort: low
In PR #1073 we included a way to deal with files from different cloud providers using `cloudpathlib`. But when doing this we generated a bug where if we pass a list of filenames for the `RelativeFEPSetup` object as the `ligand_input` parameter, we end up with an error like the following: ```python Traceback (most recent call last): File "/home/user/workdir/debugging/perses/perses-new-issue/test_RelativeFEPSetup_API.py", line 19, in <module> fe_setup = RelativeFEPSetup( File "/home/user/miniconda3/envs/perses-1092-omm-nightly-test/lib/python3.9/site-packages/perses/app/relative_setup.py", line 165, in __init__ self._ligand_input = AnyPath(ligand_input) File "/home/user/miniconda3/envs/perses-1092-omm-nightly-test/lib/python3.9/site-packages/cloudpathlib/anypath.py", line 38, in __new__ raise AnyPathTypeError( cloudpathlib.exceptions.AnyPathTypeError: Invalid input for both CloudPath and Path. CloudPath exception: InvalidPrefixError("Path ['./a1.sybyl.mol2', './a2.sybyl.mol2'] does not begin with a known prefix ['az://', 's3://', 'gs://'].") Path exception: TypeError('expected str, bytes or os.PathLike object, not list') (perses-1092-omm-nightly-test) ``` This is caused by trying to convert the list to an `cloudpathlib.AnyPath` object [here](https://github.com/choderalab/perses/blob/c96e65572b26cfdbce2d3ecaec7dae708e01568c/perses/app/relative_setup.py#L164-L165). A quick fix would be to just convert the given `input_ligand` (or even `self._input_ligand`) to an `AnyPath` object after we check it isn't a list in [line 242](https://github.com/choderalab/perses/blob/c96e65572b26cfdbce2d3ecaec7dae708e01568c/perses/app/relative_setup.py#L242). A longer term solution would be to refactor how we are dealing with this and have special methods for each case (list or str path) instead of having the huge if-else statements we currently have.
1.0
`RelativeFEPSetup` cannot deal with list of ligand input files - In PR #1073 we included a way to deal with files from different cloud providers using `cloudpathlib`. But when doing this we generated a bug where if we pass a list of filenames for the `RelativeFEPSetup` object as the `ligand_input` parameter, we end up with an error like the following: ```python Traceback (most recent call last): File "/home/user/workdir/debugging/perses/perses-new-issue/test_RelativeFEPSetup_API.py", line 19, in <module> fe_setup = RelativeFEPSetup( File "/home/user/miniconda3/envs/perses-1092-omm-nightly-test/lib/python3.9/site-packages/perses/app/relative_setup.py", line 165, in __init__ self._ligand_input = AnyPath(ligand_input) File "/home/user/miniconda3/envs/perses-1092-omm-nightly-test/lib/python3.9/site-packages/cloudpathlib/anypath.py", line 38, in __new__ raise AnyPathTypeError( cloudpathlib.exceptions.AnyPathTypeError: Invalid input for both CloudPath and Path. CloudPath exception: InvalidPrefixError("Path ['./a1.sybyl.mol2', './a2.sybyl.mol2'] does not begin with a known prefix ['az://', 's3://', 'gs://'].") Path exception: TypeError('expected str, bytes or os.PathLike object, not list') (perses-1092-omm-nightly-test) ``` This is caused by trying to convert the list to an `cloudpathlib.AnyPath` object [here](https://github.com/choderalab/perses/blob/c96e65572b26cfdbce2d3ecaec7dae708e01568c/perses/app/relative_setup.py#L164-L165). A quick fix would be to just convert the given `input_ligand` (or even `self._input_ligand`) to an `AnyPath` object after we check it isn't a list in [line 242](https://github.com/choderalab/perses/blob/c96e65572b26cfdbce2d3ecaec7dae708e01568c/perses/app/relative_setup.py#L242). A longer term solution would be to refactor how we are dealing with this and have special methods for each case (list or str path) instead of having the huge if-else statements we currently have.
non_test
relativefepsetup cannot deal with list of ligand input files in pr we included a way to deal with files from different cloud providers using cloudpathlib but when doing this we generated a bug where if we pass a list of filenames for the relativefepsetup object as the ligand input parameter we end up with an error like the following python traceback most recent call last file home user workdir debugging perses perses new issue test relativefepsetup api py line in fe setup relativefepsetup file home user envs perses omm nightly test lib site packages perses app relative setup py line in init self ligand input anypath ligand input file home user envs perses omm nightly test lib site packages cloudpathlib anypath py line in new raise anypathtypeerror cloudpathlib exceptions anypathtypeerror invalid input for both cloudpath and path cloudpath exception invalidprefixerror path does not begin with a known prefix path exception typeerror expected str bytes or os pathlike object not list perses omm nightly test this is caused by trying to convert the list to an cloudpathlib anypath object a quick fix would be to just convert the given input ligand or even self input ligand to an anypath object after we check it isn t a list in a longer term solution would be to refactor how we are dealing with this and have special methods for each case list or str path instead of having the huge if else statements we currently have
0
85,038
3,684,096,158
IssuesEvent
2016-02-24 16:15:36
todotoit/cryptoloji
https://api.github.com/repos/todotoit/cryptoloji
closed
Landing page link on second visit
enhancement priority:high
On visits after the first the landing page should show 2 links instead of the single one "Let's get going". One link takes to the onboarding ( labelled "Find out more" ) and one to the encrypt page ( labelled "Try it" ). This is particular important because the new onboarding will not be skippable.
1.0
Landing page link on second visit - On visits after the first the landing page should show 2 links instead of the single one "Let's get going". One link takes to the onboarding ( labelled "Find out more" ) and one to the encrypt page ( labelled "Try it" ). This is particular important because the new onboarding will not be skippable.
non_test
landing page link on second visit on visits after the first the landing page should show links instead of the single one let s get going one link takes to the onboarding labelled find out more and one to the encrypt page labelled try it this is particular important because the new onboarding will not be skippable
0
243,974
20,600,369,422
IssuesEvent
2022-03-06 06:25:46
metaplex-foundation/metaplex
https://api.github.com/repos/metaplex-foundation/metaplex
closed
upload was not successful, please re-run. TypeError [ERR_INVALID_ARG_TYPE]: The "path" argument must be of type string. Received undefined
needs tests bug
### Which package is this bug report for? candy machine cli ### Issue description After i ran the following command: ts-node js/packages/cli/src/candy-machine-v2-cli.ts upload \ -e devnet \ -k ~/.config/solana/devnet-poging.json \ -cp config.json \ -c js/packages/cli/example-assets This error message showed up wallet public key: EFcLTyRgWkwcHgAHTVU3mnZfX1KN3fHNPt..............(My wallet address) (node:31368) ExperimentalWarning: buffer.Blob is an experimental feature. This feature could change at any time (Use `node --trace-warnings ...` to show where the warning was created) WARNING: The "arweave" storage option will be going away soon. Please migrate to arweave-bundle or arweave-sol for mainnet. WARNING: Skipping unsupported file type \$RECYCLE.BIN WARNING: Skipping unsupported file type \$WinREAgent WARNING: Skipping unsupported file type \ComboKey WARNING: Skipping unsupported file type \Documents and Settings Beginning the upload for 10 (img+json) pairs started at: 1646298020025 upload was not successful, please re-run. TypeError [ERR_INVALID_ARG_TYPE]: The "path" argument must be of type string. Received undefined at new NodeError (node:internal/errors:371:5) at validateString (node:internal/validators:120:11) at Object.dirname (node:path:654:5) at uploadV2 (C:\Users\user\OneDrive\Bureaublad\testen nft\SolDingen\metaplex-master\js\packages\cli\src\commands\upload.ts:102:24) at Command.<anonymous> (C:\Users\user\OneDrive\Bureaublad\testen nft\SolDingen\metaplex-master\js\packages\cli\src\candy-machine-v2-cli.ts:228:21) at processTicksAndRejections (node:internal/process/task_queues:96:5) { code: 'ERR_INVALID_ARG_TYPE' I tried to re-run the command but it still didn't work. I have no idea how it happens. I followed the metaplex documentation and everything went well until this moment. Help please! ### Command ```shell ts-node js/packages/cli/src/candy-machine-v2-cli.ts upload \ -e devnet \ -k ~/.config/solana/devnet-poging.json \ -cp config.json \ -c js/packages/cli/example-assets ``` ### Relevant log output _No response_ ### Operating system Windows ### Priority this issue should have High (immediate attention needed) ### Check the Docs First - [X] I have checked the docs and it didn't solve my issue
1.0
upload was not successful, please re-run. TypeError [ERR_INVALID_ARG_TYPE]: The "path" argument must be of type string. Received undefined - ### Which package is this bug report for? candy machine cli ### Issue description After i ran the following command: ts-node js/packages/cli/src/candy-machine-v2-cli.ts upload \ -e devnet \ -k ~/.config/solana/devnet-poging.json \ -cp config.json \ -c js/packages/cli/example-assets This error message showed up wallet public key: EFcLTyRgWkwcHgAHTVU3mnZfX1KN3fHNPt..............(My wallet address) (node:31368) ExperimentalWarning: buffer.Blob is an experimental feature. This feature could change at any time (Use `node --trace-warnings ...` to show where the warning was created) WARNING: The "arweave" storage option will be going away soon. Please migrate to arweave-bundle or arweave-sol for mainnet. WARNING: Skipping unsupported file type \$RECYCLE.BIN WARNING: Skipping unsupported file type \$WinREAgent WARNING: Skipping unsupported file type \ComboKey WARNING: Skipping unsupported file type \Documents and Settings Beginning the upload for 10 (img+json) pairs started at: 1646298020025 upload was not successful, please re-run. TypeError [ERR_INVALID_ARG_TYPE]: The "path" argument must be of type string. Received undefined at new NodeError (node:internal/errors:371:5) at validateString (node:internal/validators:120:11) at Object.dirname (node:path:654:5) at uploadV2 (C:\Users\user\OneDrive\Bureaublad\testen nft\SolDingen\metaplex-master\js\packages\cli\src\commands\upload.ts:102:24) at Command.<anonymous> (C:\Users\user\OneDrive\Bureaublad\testen nft\SolDingen\metaplex-master\js\packages\cli\src\candy-machine-v2-cli.ts:228:21) at processTicksAndRejections (node:internal/process/task_queues:96:5) { code: 'ERR_INVALID_ARG_TYPE' I tried to re-run the command but it still didn't work. I have no idea how it happens. I followed the metaplex documentation and everything went well until this moment. Help please! ### Command ```shell ts-node js/packages/cli/src/candy-machine-v2-cli.ts upload \ -e devnet \ -k ~/.config/solana/devnet-poging.json \ -cp config.json \ -c js/packages/cli/example-assets ``` ### Relevant log output _No response_ ### Operating system Windows ### Priority this issue should have High (immediate attention needed) ### Check the Docs First - [X] I have checked the docs and it didn't solve my issue
test
upload was not successful please re run typeerror the path argument must be of type string received undefined which package is this bug report for candy machine cli issue description after i ran the following command ts node js packages cli src candy machine cli ts upload e devnet k config solana devnet poging json cp config json c js packages cli example assets this error message showed up wallet public key my wallet address node experimentalwarning buffer blob is an experimental feature this feature could change at any time use node trace warnings to show where the warning was created warning the arweave storage option will be going away soon please migrate to arweave bundle or arweave sol for mainnet warning skipping unsupported file type recycle bin warning skipping unsupported file type winreagent warning skipping unsupported file type combokey warning skipping unsupported file type documents and settings beginning the upload for img json pairs started at upload was not successful please re run typeerror the path argument must be of type string received undefined at new nodeerror node internal errors at validatestring node internal validators at object dirname node path at c users user onedrive bureaublad testen nft soldingen metaplex master js packages cli src commands upload ts at command c users user onedrive bureaublad testen nft soldingen metaplex master js packages cli src candy machine cli ts at processticksandrejections node internal process task queues code err invalid arg type i tried to re run the command but it still didn t work i have no idea how it happens i followed the metaplex documentation and everything went well until this moment help please command shell ts node js packages cli src candy machine cli ts upload e devnet k config solana devnet poging json cp config json c js packages cli example assets relevant log output no response operating system windows priority this issue should have high immediate attention needed check the docs first i have checked the docs and it didn t solve my issue
1
4,243
3,784,766,307
IssuesEvent
2016-03-20 01:57:35
dangeredwolf/ModernDeck
https://api.github.com/repos/dangeredwolf/ModernDeck
closed
Interface Issues in FF?
Firefox fixed usability
Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:33.0) Gecko/20100101 Firefox/33.0.2 Waterfox/33.0 Top bar often pushed off the top of the screen on refresh, with excess padding at bottom. Issue resolves when the slither of New Tweet button is pressed, and the sidebar is pulled in. ![Example](https://cloud.githubusercontent.com/assets/3588983/6805024/c7da90d6-d238-11e4-85a9-21408e78685d.PNG) After transitioning from column view to tweet detail(?), interface buttons become "sticky", requiring numerous clicks to activate.
True
Interface Issues in FF? - Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:33.0) Gecko/20100101 Firefox/33.0.2 Waterfox/33.0 Top bar often pushed off the top of the screen on refresh, with excess padding at bottom. Issue resolves when the slither of New Tweet button is pressed, and the sidebar is pulled in. ![Example](https://cloud.githubusercontent.com/assets/3588983/6805024/c7da90d6-d238-11e4-85a9-21408e78685d.PNG) After transitioning from column view to tweet detail(?), interface buttons become "sticky", requiring numerous clicks to activate.
non_test
interface issues in ff mozilla windows nt rv gecko firefox waterfox top bar often pushed off the top of the screen on refresh with excess padding at bottom issue resolves when the slither of new tweet button is pressed and the sidebar is pulled in after transitioning from column view to tweet detail interface buttons become sticky requiring numerous clicks to activate
0
228,041
17,408,485,351
IssuesEvent
2021-08-03 09:13:29
Openskiesfellows/Project-Management
https://api.github.com/repos/Openskiesfellows/Project-Management
closed
First Workshop - Tanga
documentation
@all, This is just my idea, you can all update it to be solid issue for the Tanga workshop * Participants of the Workshop #7 - [x] Confirming number of attendants from municipal @dignah - [x] Confirming number and logistic of participants from janet Chapman @dignah - [x] Locating and confirm names of other fellows from Tanga - [x] Locating and confirm names of fellows from Dar es salaam - [x] Reaching out for other potential stakeholders, eg Flying lab to participate as mentors or as trainers. (if she still working flying lab i can recommend ghati but its their choice) * Logistic - [x] Contact Person, (person who will assist the coordination of all the logistic from Tanga, before the workshop) - [x] Confirming Venue, coordination with Projekt Inspire @dignah - [x] Accommodation (airbnb? house? lodge?) - [x] Meals (at workshop and home/lodge ) * Workshop activities - [x] Introduction/presentation about OSF/OMDTZ/HOT/UHURU LAB #14 - [x] Preparing Work-plan with all the activities to be conducted for 7 days @dignah @Iddy-Chazua with support from @evilGmonkey @WilliamPerryEvans - [x] Preparing all the tools to be used for the training. (From the plan) * Monitoring, Evaluation Fellows selection - [x] Some criteria just for guidance, on what we will be much looking. eg attentive to matters, willing to not to sleep just to fix something, not each time playing with phones. - [x] What to improve in next workshop * Media Coverage - [x] High quality pictures, for tweeting reporting and website - [x] Short explanatory video, to explain the project with content of what is being done in the workshop (just suggetion) - [x] Blog, if it will be possible - [x] Online engagement
1.0
First Workshop - Tanga - @all, This is just my idea, you can all update it to be solid issue for the Tanga workshop * Participants of the Workshop #7 - [x] Confirming number of attendants from municipal @dignah - [x] Confirming number and logistic of participants from janet Chapman @dignah - [x] Locating and confirm names of other fellows from Tanga - [x] Locating and confirm names of fellows from Dar es salaam - [x] Reaching out for other potential stakeholders, eg Flying lab to participate as mentors or as trainers. (if she still working flying lab i can recommend ghati but its their choice) * Logistic - [x] Contact Person, (person who will assist the coordination of all the logistic from Tanga, before the workshop) - [x] Confirming Venue, coordination with Projekt Inspire @dignah - [x] Accommodation (airbnb? house? lodge?) - [x] Meals (at workshop and home/lodge ) * Workshop activities - [x] Introduction/presentation about OSF/OMDTZ/HOT/UHURU LAB #14 - [x] Preparing Work-plan with all the activities to be conducted for 7 days @dignah @Iddy-Chazua with support from @evilGmonkey @WilliamPerryEvans - [x] Preparing all the tools to be used for the training. (From the plan) * Monitoring, Evaluation Fellows selection - [x] Some criteria just for guidance, on what we will be much looking. eg attentive to matters, willing to not to sleep just to fix something, not each time playing with phones. - [x] What to improve in next workshop * Media Coverage - [x] High quality pictures, for tweeting reporting and website - [x] Short explanatory video, to explain the project with content of what is being done in the workshop (just suggetion) - [x] Blog, if it will be possible - [x] Online engagement
non_test
first workshop tanga all this is just my idea you can all update it to be solid issue for the tanga workshop participants of the workshop confirming number of attendants from municipal dignah confirming number and logistic of participants from janet chapman dignah locating and confirm names of other fellows from tanga locating and confirm names of fellows from dar es salaam reaching out for other potential stakeholders eg flying lab to participate as mentors or as trainers if she still working flying lab i can recommend ghati but its their choice logistic contact person person who will assist the coordination of all the logistic from tanga before the workshop confirming venue coordination with projekt inspire dignah accommodation airbnb house lodge meals at workshop and home lodge workshop activities introduction presentation about osf omdtz hot uhuru lab preparing work plan with all the activities to be conducted for days dignah iddy chazua with support from evilgmonkey williamperryevans preparing all the tools to be used for the training from the plan monitoring evaluation fellows selection some criteria just for guidance on what we will be much looking eg attentive to matters willing to not to sleep just to fix something not each time playing with phones what to improve in next workshop media coverage high quality pictures for tweeting reporting and website short explanatory video to explain the project with content of what is being done in the workshop just suggetion blog if it will be possible online engagement
0
89,559
10,604,016,718
IssuesEvent
2019-10-10 17:14:08
RaavanHackto/SimpleCalculator
https://api.github.com/repos/RaavanHackto/SimpleCalculator
opened
Create a advance version of simple calculator
calculator css documentation enhancement good first issue hacktoberfest help wanted html html-css-javascript-calculator
# Changes you can make - Can introduce new functions like square or cube or square-root or power functions etc. ## Things to keep in mind - Make sure it is responsive. - Layout design should look good - You can use any library you want
1.0
Create a advance version of simple calculator - # Changes you can make - Can introduce new functions like square or cube or square-root or power functions etc. ## Things to keep in mind - Make sure it is responsive. - Layout design should look good - You can use any library you want
non_test
create a advance version of simple calculator changes you can make can introduce new functions like square or cube or square root or power functions etc things to keep in mind make sure it is responsive layout design should look good you can use any library you want
0
126,617
10,428,708,594
IssuesEvent
2019-09-16 23:38:44
brave/brave-browser
https://api.github.com/repos/brave/brave-browser
closed
C77 - Brave safebrowsing proxy is not being used in all cases
QA Pass-Linux QA Pass-Win64 QA Pass-macOS QA/Test-Plan-Specified QA/Yes privacy privacy/connect regression release-notes/exclude
<!-- Have you searched for similar issues? Before submitting this issue, please check the open issues and add a note before logging a new issue. PLEASE USE THE TEMPLATE BELOW TO PROVIDE INFORMATION ABOUT THE ISSUE. INSUFFICIENT INFO WILL GET THE ISSUE CLOSED. IT WILL ONLY BE REOPENED AFTER SUFFICIENT INFO IS PROVIDED--> ## Description While testing the safebrowsing proxy test cases for C77 update, I found a case where we were connecting to google.com instead of brave.com. ## Steps to Reproduce <!--Please add a series of steps to reproduce the issue--> 1. Have little snitch open (macOS), clear out any info for Brave Browser or Brave Browser via Brave Browser Helper. 2. Open 0.68.133 with a clean profile. 3. Wait until the connection to safebrowsing.brave.com has been made (about 8 minutes). 4. Visit https://testsafebrowsing.appspot.com/ 5. Click on the link next to Desktop Download Warnings > 1. Should show a "malicious" warning, based on content and download the file. 6. File download is blocked in download bar. 7. Look at Little Snitch. ## Actual result: See connection to sb-ssl.google.com ![Screen Shot 2019-09-10 at 5 21 51 PM](https://user-images.githubusercontent.com/28145373/64651904-906a2d00-d3f0-11e9-9747-133cf07693dd.png) ## Expected result: Should see connection to sb-ssl.brave.com as you do on 0.68.132: ![Screen Shot 2019-09-10 at 5 36 07 PM](https://user-images.githubusercontent.com/28145373/64652331-9b718d00-d3f1-11e9-84b0-0ef176c4a533.png) ## Reproduces how often: easily ## Brave version (brave://version info) 0.68.133 ## Version/Channel Information: <!--Does this issue happen on any other channels? Or is it specific to a certain channel?--> - Can you reproduce this issue with the current release? 0.68.132 no, but 0.68.133 yes - Can you reproduce this issue with the beta channel? - Can you reproduce this issue with the dev channel? - Can you reproduce this issue with the nightly channel? ## Other Additional Information: - Does the issue resolve itself when disabling Brave Shields? n/a - Does the issue resolve itself when disabling Brave Rewards? n/a - Is the issue reproducible on the latest version of Chrome? n/a ## Miscellaneous Information: cc @brave/legacy_qa @rebron @bsclifton
1.0
C77 - Brave safebrowsing proxy is not being used in all cases - <!-- Have you searched for similar issues? Before submitting this issue, please check the open issues and add a note before logging a new issue. PLEASE USE THE TEMPLATE BELOW TO PROVIDE INFORMATION ABOUT THE ISSUE. INSUFFICIENT INFO WILL GET THE ISSUE CLOSED. IT WILL ONLY BE REOPENED AFTER SUFFICIENT INFO IS PROVIDED--> ## Description While testing the safebrowsing proxy test cases for C77 update, I found a case where we were connecting to google.com instead of brave.com. ## Steps to Reproduce <!--Please add a series of steps to reproduce the issue--> 1. Have little snitch open (macOS), clear out any info for Brave Browser or Brave Browser via Brave Browser Helper. 2. Open 0.68.133 with a clean profile. 3. Wait until the connection to safebrowsing.brave.com has been made (about 8 minutes). 4. Visit https://testsafebrowsing.appspot.com/ 5. Click on the link next to Desktop Download Warnings > 1. Should show a "malicious" warning, based on content and download the file. 6. File download is blocked in download bar. 7. Look at Little Snitch. ## Actual result: See connection to sb-ssl.google.com ![Screen Shot 2019-09-10 at 5 21 51 PM](https://user-images.githubusercontent.com/28145373/64651904-906a2d00-d3f0-11e9-9747-133cf07693dd.png) ## Expected result: Should see connection to sb-ssl.brave.com as you do on 0.68.132: ![Screen Shot 2019-09-10 at 5 36 07 PM](https://user-images.githubusercontent.com/28145373/64652331-9b718d00-d3f1-11e9-84b0-0ef176c4a533.png) ## Reproduces how often: easily ## Brave version (brave://version info) 0.68.133 ## Version/Channel Information: <!--Does this issue happen on any other channels? Or is it specific to a certain channel?--> - Can you reproduce this issue with the current release? 0.68.132 no, but 0.68.133 yes - Can you reproduce this issue with the beta channel? - Can you reproduce this issue with the dev channel? - Can you reproduce this issue with the nightly channel? ## Other Additional Information: - Does the issue resolve itself when disabling Brave Shields? n/a - Does the issue resolve itself when disabling Brave Rewards? n/a - Is the issue reproducible on the latest version of Chrome? n/a ## Miscellaneous Information: cc @brave/legacy_qa @rebron @bsclifton
test
brave safebrowsing proxy is not being used in all cases have you searched for similar issues before submitting this issue please check the open issues and add a note before logging a new issue please use the template below to provide information about the issue insufficient info will get the issue closed it will only be reopened after sufficient info is provided description while testing the safebrowsing proxy test cases for update i found a case where we were connecting to google com instead of brave com steps to reproduce have little snitch open macos clear out any info for brave browser or brave browser via brave browser helper open with a clean profile wait until the connection to safebrowsing brave com has been made about minutes visit click on the link next to desktop download warnings should show a malicious warning based on content and download the file file download is blocked in download bar look at little snitch actual result see connection to sb ssl google com expected result should see connection to sb ssl brave com as you do on reproduces how often easily brave version brave version info version channel information can you reproduce this issue with the current release no but yes can you reproduce this issue with the beta channel can you reproduce this issue with the dev channel can you reproduce this issue with the nightly channel other additional information does the issue resolve itself when disabling brave shields n a does the issue resolve itself when disabling brave rewards n a is the issue reproducible on the latest version of chrome n a miscellaneous information cc brave legacy qa rebron bsclifton
1
299,330
25,896,345,408
IssuesEvent
2022-12-14 22:56:26
CypherCryptoLabs/Cypher
https://api.github.com/repos/CypherCryptoLabs/Cypher
opened
Node takes a couple of attempts before registering to Network
bug test-network prod
When starting the Node, sometimes the following message appears: ``` [1671058416835] [Object.<anonymous>] Could not determine git branch, presuming "master"... [1671058416863] [blockchain.loadAddressCache] generating Cache file... [1671058416955] [Server.<anonymous>] Node listening on Port 1234 [1671058417165] [networking.registerToNetwork] Node refused registration! Maybe you just recently left the network? ``` This means that the trusted Node has refused the registration, this can happen without the Node being registered to the Network before. This message should only appear if a Node recently left the Network and is trying to re-register too quickly.
1.0
Node takes a couple of attempts before registering to Network - When starting the Node, sometimes the following message appears: ``` [1671058416835] [Object.<anonymous>] Could not determine git branch, presuming "master"... [1671058416863] [blockchain.loadAddressCache] generating Cache file... [1671058416955] [Server.<anonymous>] Node listening on Port 1234 [1671058417165] [networking.registerToNetwork] Node refused registration! Maybe you just recently left the network? ``` This means that the trusted Node has refused the registration, this can happen without the Node being registered to the Network before. This message should only appear if a Node recently left the Network and is trying to re-register too quickly.
test
node takes a couple of attempts before registering to network when starting the node sometimes the following message appears could not determine git branch presuming master generating cache file node listening on port node refused registration maybe you just recently left the network this means that the trusted node has refused the registration this can happen without the node being registered to the network before this message should only appear if a node recently left the network and is trying to re register too quickly
1
19,583
2,622,154,417
IssuesEvent
2015-03-04 00:07:30
byzhang/terrastore
https://api.github.com/repos/byzhang/terrastore
closed
Publish a jar containing only Terrastore APIs
auto-migrated Milestone-0.4.2 Priority-Medium Type-Enhancement
``` Terrastore provides interfaces to customize: - Update functions. - Predicate conditions. - Key comparators. - Event listeners. Those interfaces should be extracted and published in a separated jar so that users could easily develop Terrastore extensions without having to import the whole Terrastore dependencies. ``` Original issue reported on code.google.com by `sergio.b...@gmail.com` on 26 Feb 2010 at 12:48
1.0
Publish a jar containing only Terrastore APIs - ``` Terrastore provides interfaces to customize: - Update functions. - Predicate conditions. - Key comparators. - Event listeners. Those interfaces should be extracted and published in a separated jar so that users could easily develop Terrastore extensions without having to import the whole Terrastore dependencies. ``` Original issue reported on code.google.com by `sergio.b...@gmail.com` on 26 Feb 2010 at 12:48
non_test
publish a jar containing only terrastore apis terrastore provides interfaces to customize update functions predicate conditions key comparators event listeners those interfaces should be extracted and published in a separated jar so that users could easily develop terrastore extensions without having to import the whole terrastore dependencies original issue reported on code google com by sergio b gmail com on feb at
0
294,213
25,352,586,427
IssuesEvent
2022-11-20 00:03:22
WordPress/gutenberg
https://api.github.com/repos/WordPress/gutenberg
closed
[Flaky Test] should copy/paste partial selection with other blocks in-between
[Status] In Progress [Status] Stale [Type] Flaky Test
<!-- __META_DATA__:{"failedTimes":31,"totalCommits":134,"baseCommit":"32bb60d08b75486341d8a63b9e786152889aa02d"} --> **Flaky test detected. This is an auto-generated issue by GitHub Actions. Please do NOT edit this manually.** ## Test title should copy/paste partial selection with other blocks in-between ## Test path `/test/e2e/specs/editor/various/copy-cut-paste.spec.js` ## Errors <!-- __TEST_RESULTS_LIST__ --> <!-- __TEST_RESULT__ --><time datetime="2022-04-13T10:53:37.816Z"><code>[2022-04-13T10:53:37.816Z]</code></time> Test passed after 1 failed attempt on <a href="https://github.com/WordPress/gutenberg/actions/runs/2160639572"><code>fix/gutenberg-7422</code></a>.<!-- /__TEST_RESULT__ --> <br/> <!-- __TEST_RESULT__ --><time datetime="2022-05-10T15:54:12.212Z"><code>[2022-05-10T15:54:12.212Z]</code></time> Test passed after 1 failed attempt on <a href="https://github.com/WordPress/gutenberg/actions/runs/2301740850"><code>wp/6.0</code></a>.<!-- /__TEST_RESULT__ --> <br/> <!-- __TEST_RESULT__ --><time datetime="2022-05-10T18:58:48.443Z"><code>[2022-05-10T18:58:48.443Z]</code></time> Test passed after 1 failed attempt on <a href="https://github.com/WordPress/gutenberg/actions/runs/2302689513"><code>fix/input-field-reset-behavior-moar</code></a>.<!-- /__TEST_RESULT__ --> <br/> <!-- __TEST_RESULT__ --><time datetime="2022-05-16T07:50:54.794Z"><code>[2022-05-16T07:50:54.794Z]</code></time> Test passed after 1 failed attempt on <a href="https://github.com/WordPress/gutenberg/actions/runs/2330425165"><code>refactor/range-control-to-typescript</code></a>.<!-- /__TEST_RESULT__ --> <br/> <!-- __TEST_RESULT__ --><time datetime="2022-05-16T09:51:44.019Z"><code>[2022-05-16T09:51:44.019Z]</code></time> Test passed after 1 failed attempt on <a href="https://github.com/WordPress/gutenberg/actions/runs/2331036710"><code>wp/6.0</code></a>.<!-- /__TEST_RESULT__ --> <br/> <!-- __TEST_RESULT__ --><time datetime="2022-05-17T12:40:34.532Z"><code>[2022-05-17T12:40:34.532Z]</code></time> Test passed after 1 failed attempt on <a href="https://github.com/WordPress/gutenberg/actions/runs/2338605116"><code>wp/6.0</code></a>.<!-- /__TEST_RESULT__ --> <br/> <!-- __TEST_RESULT__ --><time datetime="2022-05-17T12:57:59.053Z"><code>[2022-05-17T12:57:59.053Z]</code></time> Test passed after 1 failed attempt on <a href="https://github.com/WordPress/gutenberg/actions/runs/2338696807"><code>wp/6.0</code></a>.<!-- /__TEST_RESULT__ --> <br/> <!-- __TEST_RESULT__ --><time datetime="2022-05-20T11:35:14.253Z"><code>[2022-05-20T11:35:14.253Z]</code></time> Test passed after 1 failed attempt on <a href="https://github.com/WordPress/gutenberg/actions/runs/2357956893"><code>wp/6.0</code></a>.<!-- /__TEST_RESULT__ --> <br/> <!-- __TEST_RESULT__ --><time datetime="2022-05-20T13:18:45.638Z"><code>[2022-05-20T13:18:45.638Z]</code></time> Test passed after 1 failed attempt on <a href="https://github.com/WordPress/gutenberg/actions/runs/2358447440"><code>wp/6.0</code></a>.<!-- /__TEST_RESULT__ --> <br/> <!-- __TEST_RESULT__ --><time datetime="2022-05-20T13:47:09.850Z"><code>[2022-05-20T13:47:09.850Z]</code></time> Test passed after 1 failed attempt on <a href="https://github.com/WordPress/gutenberg/actions/runs/2358598805"><code>wp/6.0</code></a>.<!-- /__TEST_RESULT__ --> <br/> <!-- __TEST_RESULT__ --><time datetime="2022-05-23T11:13:58.099Z"><code>[2022-05-23T11:13:58.099Z]</code></time> Test passed after 1 failed attempt on <a href="https://github.com/WordPress/gutenberg/actions/runs/2370791234"><code>wp/6.0</code></a>.<!-- /__TEST_RESULT__ --> <br/> <!-- __TEST_RESULT__ --><time datetime="2022-06-21T14:02:55.204Z"><code>[2022-06-21T14:02:55.204Z]</code></time> Test passed after 1 failed attempt on <a href="https://github.com/WordPress/gutenberg/actions/runs/2535874880"><code>wp/6.0</code></a>.<!-- /__TEST_RESULT__ --> <br/> <!-- __TEST_RESULT__ --><time datetime="2022-06-21T14:19:11.355Z"><code>[2022-06-21T14:19:11.355Z]</code></time> Test passed after 1 failed attempt on <a href="https://github.com/WordPress/gutenberg/actions/runs/2535962079"><code>wp/6.0</code></a>.<!-- /__TEST_RESULT__ --> <br/> <!-- __TEST_RESULT__ --><time datetime="2022-06-21T14:28:33.011Z"><code>[2022-06-21T14:28:33.011Z]</code></time> Test passed after 1 failed attempt on <a href="https://github.com/WordPress/gutenberg/actions/runs/2536046112"><code>wp/6.0</code></a>.<!-- /__TEST_RESULT__ --> <br/> <!-- __TEST_RESULT__ --><time datetime="2022-06-30T14:24:58.413Z"><code>[2022-06-30T14:24:58.413Z]</code></time> Test passed after 1 failed attempt on <a href="https://github.com/WordPress/gutenberg/actions/runs/2590544964"><code>wp/6.0</code></a>.<!-- /__TEST_RESULT__ --> <br/> <!-- __TEST_RESULT__ --><time datetime="2022-06-30T14:54:04.511Z"><code>[2022-06-30T14:54:04.511Z]</code></time> Test passed after 1 failed attempt on <a href="https://github.com/WordPress/gutenberg/actions/runs/2590726254"><code>wp/6.0</code></a>.<!-- /__TEST_RESULT__ --> <br/> <!-- __TEST_RESULT__ --><time datetime="2022-07-05T12:10:46.496Z"><code>[2022-07-05T12:10:46.496Z]</code></time> Test passed after 1 failed attempt on <a href="https://github.com/WordPress/gutenberg/actions/runs/2615976920"><code>wp/6.0</code></a>.<!-- /__TEST_RESULT__ --> <br/> <!-- __TEST_RESULT__ --><time datetime="2022-07-05T12:18:46.739Z"><code>[2022-07-05T12:18:46.739Z]</code></time> Test passed after 1 failed attempt on <a href="https://github.com/WordPress/gutenberg/actions/runs/2616015486"><code>wp/6.0</code></a>.<!-- /__TEST_RESULT__ --> <br/> <!-- __TEST_RESULT__ --><time datetime="2022-07-20T09:28:48.803Z"><code>[2022-07-20T09:28:48.803Z]</code></time> Test passed after 1 failed attempt on <a href="https://github.com/WordPress/gutenberg/actions/runs/2703599062"><code>fix/backport-variations-schema-to-6.0</code></a>.<!-- /__TEST_RESULT__ --> <br/> <!-- __TEST_RESULT__ --><time datetime="2022-10-17T15:04:04.101Z"><code>[2022-10-17T15:04:04.101Z]</code></time> Test passed after 1 failed attempt on <a href="https://github.com/WordPress/gutenberg/actions/runs/3266167715"><code>wp/6.0</code></a>.<!-- /__TEST_RESULT__ --> <br/> <!-- __TEST_RESULT__ --><time datetime="2022-10-17T15:35:47.239Z"><code>[2022-10-17T15:35:47.239Z]</code></time> Test passed after 1 failed attempt on <a href="https://github.com/WordPress/gutenberg/actions/runs/3266397932"><code>grouped-603/wp/6.0</code></a>.<!-- /__TEST_RESULT__ --> <br/> <!-- __TEST_RESULT__ --><time datetime="2022-10-17T15:39:16.256Z"><code>[2022-10-17T15:39:16.256Z]</code></time> Test passed after 1 failed attempt on <a href="https://github.com/WordPress/gutenberg/actions/runs/3266420056"><code>wp/6.0</code></a>.<!-- /__TEST_RESULT__ --> <br/> <!-- __TEST_RESULT__ --><details> <summary> <time datetime="2022-10-17T15:51:04.103Z"><code>[2022-10-17T15:51:04.103Z]</code></time> Test passed after 1 failed attempt on <a href="https://github.com/WordPress/gutenberg/actions/runs/3266520345"><code>wp/6.0</code></a>. </summary> ``` Error: Snapshot comparison failed: <!-- wp:paragraph --> <p>block</p> <!-- /wp:paragraph --> <!-- wp:spacer --> <div style="height:100px" aria-hidden="true" class="wp-block-spacer"></div> <!-- /wp:spacer --> <!-- wp:paragraph --> <p>B </p> <!-- /wp:paragraph --> <!-- wp:paragraph --> <p>A block</p> <!-- /wp:paragraph --> <!-- wp:spacer --> <div style="height:100px" aria-hidden="true" class="wp-block-spacer"></divragraph --> <p></p> <!-- /wp:spacerragraph --> <!-- wp:paragraph --> <p>B block</p> <!-- /wp:paragraph --> Expected: /home/runner/work/gutenberg/gutenberg/artifacts/test-results/editor-various-copy-cut-paste-Copy-cut-paste-s-3bb90--partial-selection-with-other-blocks-in-between-chromium/Copy-cut-paste-should-copy-paste-partial-selection-with-other-blocks-in-between-2-expected.txt Received: /home/runner/work/gutenberg/gutenberg/artifacts/test-results/editor-various-copy-cut-paste-Copy-cut-paste-s-3bb90--partial-selection-with-other-blocks-in-between-chromium/Copy-cut-paste-should-copy-paste-partial-selection-with-other-blocks-in-between-2-actual.txt at /home/runner/work/gutenberg/gutenberg/test/e2e/specs/editor/various/copy-cut-paste.spec.js:275:52 ``` </details><!-- /__TEST_RESULT__ --> <!-- /__TEST_RESULTS_LIST__ -->
1.0
[Flaky Test] should copy/paste partial selection with other blocks in-between - <!-- __META_DATA__:{"failedTimes":31,"totalCommits":134,"baseCommit":"32bb60d08b75486341d8a63b9e786152889aa02d"} --> **Flaky test detected. This is an auto-generated issue by GitHub Actions. Please do NOT edit this manually.** ## Test title should copy/paste partial selection with other blocks in-between ## Test path `/test/e2e/specs/editor/various/copy-cut-paste.spec.js` ## Errors <!-- __TEST_RESULTS_LIST__ --> <!-- __TEST_RESULT__ --><time datetime="2022-04-13T10:53:37.816Z"><code>[2022-04-13T10:53:37.816Z]</code></time> Test passed after 1 failed attempt on <a href="https://github.com/WordPress/gutenberg/actions/runs/2160639572"><code>fix/gutenberg-7422</code></a>.<!-- /__TEST_RESULT__ --> <br/> <!-- __TEST_RESULT__ --><time datetime="2022-05-10T15:54:12.212Z"><code>[2022-05-10T15:54:12.212Z]</code></time> Test passed after 1 failed attempt on <a href="https://github.com/WordPress/gutenberg/actions/runs/2301740850"><code>wp/6.0</code></a>.<!-- /__TEST_RESULT__ --> <br/> <!-- __TEST_RESULT__ --><time datetime="2022-05-10T18:58:48.443Z"><code>[2022-05-10T18:58:48.443Z]</code></time> Test passed after 1 failed attempt on <a href="https://github.com/WordPress/gutenberg/actions/runs/2302689513"><code>fix/input-field-reset-behavior-moar</code></a>.<!-- /__TEST_RESULT__ --> <br/> <!-- __TEST_RESULT__ --><time datetime="2022-05-16T07:50:54.794Z"><code>[2022-05-16T07:50:54.794Z]</code></time> Test passed after 1 failed attempt on <a href="https://github.com/WordPress/gutenberg/actions/runs/2330425165"><code>refactor/range-control-to-typescript</code></a>.<!-- /__TEST_RESULT__ --> <br/> <!-- __TEST_RESULT__ --><time datetime="2022-05-16T09:51:44.019Z"><code>[2022-05-16T09:51:44.019Z]</code></time> Test passed after 1 failed attempt on <a href="https://github.com/WordPress/gutenberg/actions/runs/2331036710"><code>wp/6.0</code></a>.<!-- /__TEST_RESULT__ --> <br/> <!-- __TEST_RESULT__ --><time datetime="2022-05-17T12:40:34.532Z"><code>[2022-05-17T12:40:34.532Z]</code></time> Test passed after 1 failed attempt on <a href="https://github.com/WordPress/gutenberg/actions/runs/2338605116"><code>wp/6.0</code></a>.<!-- /__TEST_RESULT__ --> <br/> <!-- __TEST_RESULT__ --><time datetime="2022-05-17T12:57:59.053Z"><code>[2022-05-17T12:57:59.053Z]</code></time> Test passed after 1 failed attempt on <a href="https://github.com/WordPress/gutenberg/actions/runs/2338696807"><code>wp/6.0</code></a>.<!-- /__TEST_RESULT__ --> <br/> <!-- __TEST_RESULT__ --><time datetime="2022-05-20T11:35:14.253Z"><code>[2022-05-20T11:35:14.253Z]</code></time> Test passed after 1 failed attempt on <a href="https://github.com/WordPress/gutenberg/actions/runs/2357956893"><code>wp/6.0</code></a>.<!-- /__TEST_RESULT__ --> <br/> <!-- __TEST_RESULT__ --><time datetime="2022-05-20T13:18:45.638Z"><code>[2022-05-20T13:18:45.638Z]</code></time> Test passed after 1 failed attempt on <a href="https://github.com/WordPress/gutenberg/actions/runs/2358447440"><code>wp/6.0</code></a>.<!-- /__TEST_RESULT__ --> <br/> <!-- __TEST_RESULT__ --><time datetime="2022-05-20T13:47:09.850Z"><code>[2022-05-20T13:47:09.850Z]</code></time> Test passed after 1 failed attempt on <a href="https://github.com/WordPress/gutenberg/actions/runs/2358598805"><code>wp/6.0</code></a>.<!-- /__TEST_RESULT__ --> <br/> <!-- __TEST_RESULT__ --><time datetime="2022-05-23T11:13:58.099Z"><code>[2022-05-23T11:13:58.099Z]</code></time> Test passed after 1 failed attempt on <a href="https://github.com/WordPress/gutenberg/actions/runs/2370791234"><code>wp/6.0</code></a>.<!-- /__TEST_RESULT__ --> <br/> <!-- __TEST_RESULT__ --><time datetime="2022-06-21T14:02:55.204Z"><code>[2022-06-21T14:02:55.204Z]</code></time> Test passed after 1 failed attempt on <a href="https://github.com/WordPress/gutenberg/actions/runs/2535874880"><code>wp/6.0</code></a>.<!-- /__TEST_RESULT__ --> <br/> <!-- __TEST_RESULT__ --><time datetime="2022-06-21T14:19:11.355Z"><code>[2022-06-21T14:19:11.355Z]</code></time> Test passed after 1 failed attempt on <a href="https://github.com/WordPress/gutenberg/actions/runs/2535962079"><code>wp/6.0</code></a>.<!-- /__TEST_RESULT__ --> <br/> <!-- __TEST_RESULT__ --><time datetime="2022-06-21T14:28:33.011Z"><code>[2022-06-21T14:28:33.011Z]</code></time> Test passed after 1 failed attempt on <a href="https://github.com/WordPress/gutenberg/actions/runs/2536046112"><code>wp/6.0</code></a>.<!-- /__TEST_RESULT__ --> <br/> <!-- __TEST_RESULT__ --><time datetime="2022-06-30T14:24:58.413Z"><code>[2022-06-30T14:24:58.413Z]</code></time> Test passed after 1 failed attempt on <a href="https://github.com/WordPress/gutenberg/actions/runs/2590544964"><code>wp/6.0</code></a>.<!-- /__TEST_RESULT__ --> <br/> <!-- __TEST_RESULT__ --><time datetime="2022-06-30T14:54:04.511Z"><code>[2022-06-30T14:54:04.511Z]</code></time> Test passed after 1 failed attempt on <a href="https://github.com/WordPress/gutenberg/actions/runs/2590726254"><code>wp/6.0</code></a>.<!-- /__TEST_RESULT__ --> <br/> <!-- __TEST_RESULT__ --><time datetime="2022-07-05T12:10:46.496Z"><code>[2022-07-05T12:10:46.496Z]</code></time> Test passed after 1 failed attempt on <a href="https://github.com/WordPress/gutenberg/actions/runs/2615976920"><code>wp/6.0</code></a>.<!-- /__TEST_RESULT__ --> <br/> <!-- __TEST_RESULT__ --><time datetime="2022-07-05T12:18:46.739Z"><code>[2022-07-05T12:18:46.739Z]</code></time> Test passed after 1 failed attempt on <a href="https://github.com/WordPress/gutenberg/actions/runs/2616015486"><code>wp/6.0</code></a>.<!-- /__TEST_RESULT__ --> <br/> <!-- __TEST_RESULT__ --><time datetime="2022-07-20T09:28:48.803Z"><code>[2022-07-20T09:28:48.803Z]</code></time> Test passed after 1 failed attempt on <a href="https://github.com/WordPress/gutenberg/actions/runs/2703599062"><code>fix/backport-variations-schema-to-6.0</code></a>.<!-- /__TEST_RESULT__ --> <br/> <!-- __TEST_RESULT__ --><time datetime="2022-10-17T15:04:04.101Z"><code>[2022-10-17T15:04:04.101Z]</code></time> Test passed after 1 failed attempt on <a href="https://github.com/WordPress/gutenberg/actions/runs/3266167715"><code>wp/6.0</code></a>.<!-- /__TEST_RESULT__ --> <br/> <!-- __TEST_RESULT__ --><time datetime="2022-10-17T15:35:47.239Z"><code>[2022-10-17T15:35:47.239Z]</code></time> Test passed after 1 failed attempt on <a href="https://github.com/WordPress/gutenberg/actions/runs/3266397932"><code>grouped-603/wp/6.0</code></a>.<!-- /__TEST_RESULT__ --> <br/> <!-- __TEST_RESULT__ --><time datetime="2022-10-17T15:39:16.256Z"><code>[2022-10-17T15:39:16.256Z]</code></time> Test passed after 1 failed attempt on <a href="https://github.com/WordPress/gutenberg/actions/runs/3266420056"><code>wp/6.0</code></a>.<!-- /__TEST_RESULT__ --> <br/> <!-- __TEST_RESULT__ --><details> <summary> <time datetime="2022-10-17T15:51:04.103Z"><code>[2022-10-17T15:51:04.103Z]</code></time> Test passed after 1 failed attempt on <a href="https://github.com/WordPress/gutenberg/actions/runs/3266520345"><code>wp/6.0</code></a>. </summary> ``` Error: Snapshot comparison failed: <!-- wp:paragraph --> <p>block</p> <!-- /wp:paragraph --> <!-- wp:spacer --> <div style="height:100px" aria-hidden="true" class="wp-block-spacer"></div> <!-- /wp:spacer --> <!-- wp:paragraph --> <p>B </p> <!-- /wp:paragraph --> <!-- wp:paragraph --> <p>A block</p> <!-- /wp:paragraph --> <!-- wp:spacer --> <div style="height:100px" aria-hidden="true" class="wp-block-spacer"></divragraph --> <p></p> <!-- /wp:spacerragraph --> <!-- wp:paragraph --> <p>B block</p> <!-- /wp:paragraph --> Expected: /home/runner/work/gutenberg/gutenberg/artifacts/test-results/editor-various-copy-cut-paste-Copy-cut-paste-s-3bb90--partial-selection-with-other-blocks-in-between-chromium/Copy-cut-paste-should-copy-paste-partial-selection-with-other-blocks-in-between-2-expected.txt Received: /home/runner/work/gutenberg/gutenberg/artifacts/test-results/editor-various-copy-cut-paste-Copy-cut-paste-s-3bb90--partial-selection-with-other-blocks-in-between-chromium/Copy-cut-paste-should-copy-paste-partial-selection-with-other-blocks-in-between-2-actual.txt at /home/runner/work/gutenberg/gutenberg/test/e2e/specs/editor/various/copy-cut-paste.spec.js:275:52 ``` </details><!-- /__TEST_RESULT__ --> <!-- /__TEST_RESULTS_LIST__ -->
test
should copy paste partial selection with other blocks in between flaky test detected this is an auto generated issue by github actions please do not edit this manually test title should copy paste partial selection with other blocks in between test path test specs editor various copy cut paste spec js errors test passed after failed attempt on test passed after failed attempt on test passed after failed attempt on test passed after failed attempt on test passed after failed attempt on test passed after failed attempt on test passed after failed attempt on test passed after failed attempt on test passed after failed attempt on test passed after failed attempt on test passed after failed attempt on test passed after failed attempt on test passed after failed attempt on test passed after failed attempt on test passed after failed attempt on test passed after failed attempt on test passed after failed attempt on test passed after failed attempt on test passed after failed attempt on test passed after failed attempt on test passed after failed attempt on test passed after failed attempt on test passed after failed attempt on a href error snapshot comparison failed block b a block b block expected home runner work gutenberg gutenberg artifacts test results editor various copy cut paste copy cut paste s partial selection with other blocks in between chromium copy cut paste should copy paste partial selection with other blocks in between expected txt received home runner work gutenberg gutenberg artifacts test results editor various copy cut paste copy cut paste s partial selection with other blocks in between chromium copy cut paste should copy paste partial selection with other blocks in between actual txt at home runner work gutenberg gutenberg test specs editor various copy cut paste spec js
1
82,333
7,837,896,641
IssuesEvent
2018-06-18 08:20:32
astropy/astropy
https://api.github.com/repos/astropy/astropy
opened
Logger test failures when pytest-qt is installed
testing
There is a pytest plugin called pytest-qt that is used by some packages - one of the side effect it has on all packages is to fail if there is any output printed to stderr during the test phase. There are a couple of failures in astropy that happen when pytest-qt is installed - this is more annoying than serious but it'd still be good to track down why these happen, and whether they can be safely ignored. ``` ============================================================================== FAILURES =============================================================================== _______________________________________________________________________ test_exception_logging ________________________________________________________________________ CALL ERROR: Qt exceptions in virtual methods: ________________________________________________________________________________ Traceback (most recent call last): File "/private/var/folders/zy/t1l3sx310d3d6p0kyxqzlrnr0000gr/T/astropy-test-1izlslk0/lib/python3.6/site-packages/astropy/tests/test_logger.py", line 205, in test_exception_logging raise Exception("This is an Exception") Exception: This is an Exception ________________________________________________________________________________ Traceback (most recent call last): File "/private/var/folders/zy/t1l3sx310d3d6p0kyxqzlrnr0000gr/T/astropy-test-1izlslk0/lib/python3.6/site-packages/astropy/tests/test_logger.py", line 217, in test_exception_logging raise Exception("This is an Exception") Exception: This is an Exception ________________________________________________________________________________ Traceback (most recent call last): File "/private/var/folders/zy/t1l3sx310d3d6p0kyxqzlrnr0000gr/T/astropy-test-1izlslk0/lib/python3.6/site-packages/astropy/tests/test_logger.py", line 232, in test_exception_logging raise Exception("This is an Exception") Exception: This is an Exception ________________________________________________________________________________ ------------------------------------------------------------------------ Captured stderr call ------------------------------------------------------------------------- Qt exceptions in virtual methods: ________________________________________________________________________________ Traceback (most recent call last): File "/private/var/folders/zy/t1l3sx310d3d6p0kyxqzlrnr0000gr/T/astropy-test-1izlslk0/lib/python3.6/site-packages/astropy/tests/test_logger.py", line 205, in test_exception_logging raise Exception("This is an Exception") Exception: This is an Exception ________________________________________________________________________________ ERROR: Exception: This is an Exception [astropy.tests.test_logger] Qt exceptions in virtual methods: ________________________________________________________________________________ Traceback (most recent call last): File "/private/var/folders/zy/t1l3sx310d3d6p0kyxqzlrnr0000gr/T/astropy-test-1izlslk0/lib/python3.6/site-packages/astropy/tests/test_logger.py", line 217, in test_exception_logging raise Exception("This is an Exception") Exception: This is an Exception ________________________________________________________________________________ Qt exceptions in virtual methods: ________________________________________________________________________________ Traceback (most recent call last): File "/private/var/folders/zy/t1l3sx310d3d6p0kyxqzlrnr0000gr/T/astropy-test-1izlslk0/lib/python3.6/site-packages/astropy/tests/test_logger.py", line 232, in test_exception_logging raise Exception("This is an Exception") Exception: This is an Exception ________________________________________________________________________________ -------------------------------------------------------------------------- Captured log call -------------------------------------------------------------------------- logger.py 259 ERROR Exception: This is an Exception ____________________________________________________________________ test_exception_logging_origin ____________________________________________________________________ CALL ERROR: Qt exceptions in virtual methods: ________________________________________________________________________________ Traceback (most recent call last): File "/private/var/folders/zy/t1l3sx310d3d6p0kyxqzlrnr0000gr/T/astropy-test-1izlslk0/lib/python3.6/site-packages/astropy/tests/test_logger.py", line 252, in test_exception_logging_origin l.append('foo') File "/private/var/folders/zy/t1l3sx310d3d6p0kyxqzlrnr0000gr/T/astropy-test-1izlslk0/lib/python3.6/site-packages/astropy/utils/collections.py", line 47, in append self._assert(x) File "/private/var/folders/zy/t1l3sx310d3d6p0kyxqzlrnr0000gr/T/astropy-test-1izlslk0/lib/python3.6/site-packages/astropy/utils/collections.py", line 31, in _assert "type '{}'".format(self._types)) TypeError: homogeneous list must contain only objects of type '<class 'int'>' ________________________________________________________________________________ ------------------------------------------------------------------------ Captured stderr call ------------------------------------------------------------------------- ERROR: TypeError: homogeneous list must contain only objects of type '<class 'int'>' [astropy.utils.collections] Qt exceptions in virtual methods: ________________________________________________________________________________ Traceback (most recent call last): File "/private/var/folders/zy/t1l3sx310d3d6p0kyxqzlrnr0000gr/T/astropy-test-1izlslk0/lib/python3.6/site-packages/astropy/tests/test_logger.py", line 252, in test_exception_logging_origin l.append('foo') File "/private/var/folders/zy/t1l3sx310d3d6p0kyxqzlrnr0000gr/T/astropy-test-1izlslk0/lib/python3.6/site-packages/astropy/utils/collections.py", line 47, in append self._assert(x) File "/private/var/folders/zy/t1l3sx310d3d6p0kyxqzlrnr0000gr/T/astropy-test-1izlslk0/lib/python3.6/site-packages/astropy/utils/collections.py", line 31, in _assert "type '{}'".format(self._types)) TypeError: homogeneous list must contain only objects of type '<class 'int'>' ________________________________________________________________________________ -------------------------------------------------------------------------- Captured log call -------------------------------------------------------------------------- logger.py 259 ERROR TypeError: homogeneous list must contain only objects of type '<class 'int'>' ```
1.0
Logger test failures when pytest-qt is installed - There is a pytest plugin called pytest-qt that is used by some packages - one of the side effect it has on all packages is to fail if there is any output printed to stderr during the test phase. There are a couple of failures in astropy that happen when pytest-qt is installed - this is more annoying than serious but it'd still be good to track down why these happen, and whether they can be safely ignored. ``` ============================================================================== FAILURES =============================================================================== _______________________________________________________________________ test_exception_logging ________________________________________________________________________ CALL ERROR: Qt exceptions in virtual methods: ________________________________________________________________________________ Traceback (most recent call last): File "/private/var/folders/zy/t1l3sx310d3d6p0kyxqzlrnr0000gr/T/astropy-test-1izlslk0/lib/python3.6/site-packages/astropy/tests/test_logger.py", line 205, in test_exception_logging raise Exception("This is an Exception") Exception: This is an Exception ________________________________________________________________________________ Traceback (most recent call last): File "/private/var/folders/zy/t1l3sx310d3d6p0kyxqzlrnr0000gr/T/astropy-test-1izlslk0/lib/python3.6/site-packages/astropy/tests/test_logger.py", line 217, in test_exception_logging raise Exception("This is an Exception") Exception: This is an Exception ________________________________________________________________________________ Traceback (most recent call last): File "/private/var/folders/zy/t1l3sx310d3d6p0kyxqzlrnr0000gr/T/astropy-test-1izlslk0/lib/python3.6/site-packages/astropy/tests/test_logger.py", line 232, in test_exception_logging raise Exception("This is an Exception") Exception: This is an Exception ________________________________________________________________________________ ------------------------------------------------------------------------ Captured stderr call ------------------------------------------------------------------------- Qt exceptions in virtual methods: ________________________________________________________________________________ Traceback (most recent call last): File "/private/var/folders/zy/t1l3sx310d3d6p0kyxqzlrnr0000gr/T/astropy-test-1izlslk0/lib/python3.6/site-packages/astropy/tests/test_logger.py", line 205, in test_exception_logging raise Exception("This is an Exception") Exception: This is an Exception ________________________________________________________________________________ ERROR: Exception: This is an Exception [astropy.tests.test_logger] Qt exceptions in virtual methods: ________________________________________________________________________________ Traceback (most recent call last): File "/private/var/folders/zy/t1l3sx310d3d6p0kyxqzlrnr0000gr/T/astropy-test-1izlslk0/lib/python3.6/site-packages/astropy/tests/test_logger.py", line 217, in test_exception_logging raise Exception("This is an Exception") Exception: This is an Exception ________________________________________________________________________________ Qt exceptions in virtual methods: ________________________________________________________________________________ Traceback (most recent call last): File "/private/var/folders/zy/t1l3sx310d3d6p0kyxqzlrnr0000gr/T/astropy-test-1izlslk0/lib/python3.6/site-packages/astropy/tests/test_logger.py", line 232, in test_exception_logging raise Exception("This is an Exception") Exception: This is an Exception ________________________________________________________________________________ -------------------------------------------------------------------------- Captured log call -------------------------------------------------------------------------- logger.py 259 ERROR Exception: This is an Exception ____________________________________________________________________ test_exception_logging_origin ____________________________________________________________________ CALL ERROR: Qt exceptions in virtual methods: ________________________________________________________________________________ Traceback (most recent call last): File "/private/var/folders/zy/t1l3sx310d3d6p0kyxqzlrnr0000gr/T/astropy-test-1izlslk0/lib/python3.6/site-packages/astropy/tests/test_logger.py", line 252, in test_exception_logging_origin l.append('foo') File "/private/var/folders/zy/t1l3sx310d3d6p0kyxqzlrnr0000gr/T/astropy-test-1izlslk0/lib/python3.6/site-packages/astropy/utils/collections.py", line 47, in append self._assert(x) File "/private/var/folders/zy/t1l3sx310d3d6p0kyxqzlrnr0000gr/T/astropy-test-1izlslk0/lib/python3.6/site-packages/astropy/utils/collections.py", line 31, in _assert "type '{}'".format(self._types)) TypeError: homogeneous list must contain only objects of type '<class 'int'>' ________________________________________________________________________________ ------------------------------------------------------------------------ Captured stderr call ------------------------------------------------------------------------- ERROR: TypeError: homogeneous list must contain only objects of type '<class 'int'>' [astropy.utils.collections] Qt exceptions in virtual methods: ________________________________________________________________________________ Traceback (most recent call last): File "/private/var/folders/zy/t1l3sx310d3d6p0kyxqzlrnr0000gr/T/astropy-test-1izlslk0/lib/python3.6/site-packages/astropy/tests/test_logger.py", line 252, in test_exception_logging_origin l.append('foo') File "/private/var/folders/zy/t1l3sx310d3d6p0kyxqzlrnr0000gr/T/astropy-test-1izlslk0/lib/python3.6/site-packages/astropy/utils/collections.py", line 47, in append self._assert(x) File "/private/var/folders/zy/t1l3sx310d3d6p0kyxqzlrnr0000gr/T/astropy-test-1izlslk0/lib/python3.6/site-packages/astropy/utils/collections.py", line 31, in _assert "type '{}'".format(self._types)) TypeError: homogeneous list must contain only objects of type '<class 'int'>' ________________________________________________________________________________ -------------------------------------------------------------------------- Captured log call -------------------------------------------------------------------------- logger.py 259 ERROR TypeError: homogeneous list must contain only objects of type '<class 'int'>' ```
test
logger test failures when pytest qt is installed there is a pytest plugin called pytest qt that is used by some packages one of the side effect it has on all packages is to fail if there is any output printed to stderr during the test phase there are a couple of failures in astropy that happen when pytest qt is installed this is more annoying than serious but it d still be good to track down why these happen and whether they can be safely ignored failures test exception logging call error qt exceptions in virtual methods traceback most recent call last file private var folders zy t astropy test lib site packages astropy tests test logger py line in test exception logging raise exception this is an exception exception this is an exception traceback most recent call last file private var folders zy t astropy test lib site packages astropy tests test logger py line in test exception logging raise exception this is an exception exception this is an exception traceback most recent call last file private var folders zy t astropy test lib site packages astropy tests test logger py line in test exception logging raise exception this is an exception exception this is an exception captured stderr call qt exceptions in virtual methods traceback most recent call last file private var folders zy t astropy test lib site packages astropy tests test logger py line in test exception logging raise exception this is an exception exception this is an exception error exception this is an exception qt exceptions in virtual methods traceback most recent call last file private var folders zy t astropy test lib site packages astropy tests test logger py line in test exception logging raise exception this is an exception exception this is an exception qt exceptions in virtual methods traceback most recent call last file private var folders zy t astropy test lib site packages astropy tests test logger py line in test exception logging raise exception this is an exception exception this is an exception captured log call logger py error exception this is an exception test exception logging origin call error qt exceptions in virtual methods traceback most recent call last file private var folders zy t astropy test lib site packages astropy tests test logger py line in test exception logging origin l append foo file private var folders zy t astropy test lib site packages astropy utils collections py line in append self assert x file private var folders zy t astropy test lib site packages astropy utils collections py line in assert type format self types typeerror homogeneous list must contain only objects of type captured stderr call error typeerror homogeneous list must contain only objects of type qt exceptions in virtual methods traceback most recent call last file private var folders zy t astropy test lib site packages astropy tests test logger py line in test exception logging origin l append foo file private var folders zy t astropy test lib site packages astropy utils collections py line in append self assert x file private var folders zy t astropy test lib site packages astropy utils collections py line in assert type format self types typeerror homogeneous list must contain only objects of type captured log call logger py error typeerror homogeneous list must contain only objects of type
1
89,173
15,826,296,120
IssuesEvent
2021-04-06 07:13:56
t2kx/juice-shop
https://api.github.com/repos/t2kx/juice-shop
opened
CVE-2020-28481 (Medium) detected in socket.io-2.1.1.tgz
security vulnerability
## CVE-2020-28481 - Medium Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>socket.io-2.1.1.tgz</b></p></summary> <p>node.js realtime framework server</p> <p>Library home page: <a href="https://registry.npmjs.org/socket.io/-/socket.io-2.1.1.tgz">https://registry.npmjs.org/socket.io/-/socket.io-2.1.1.tgz</a></p> <p>Path to dependency file: juice-shop/frontend/package.json</p> <p>Path to vulnerable library: juice-shop/frontend/node_modules/socket.io/package.json</p> <p> Dependency Hierarchy: - karma-4.4.1.tgz (Root Library) - :x: **socket.io-2.1.1.tgz** (Vulnerable Library) <p>Found in HEAD commit: <a href="https://github.com/t2kx/juice-shop/commit/55296eb516fcecd9328def6cf581ec52ba96b661">55296eb516fcecd9328def6cf581ec52ba96b661</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary> <p> The package socket.io before 2.4.0 are vulnerable to Insecure Defaults due to CORS Misconfiguration. All domains are whitelisted by default. <p>Publish Date: 2021-01-19 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2020-28481>CVE-2020-28481</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.3</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: Low - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: Low - Integrity Impact: None - Availability Impact: None </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary> <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-28481">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-28481</a></p> <p>Release Date: 2021-01-19</p> <p>Fix Resolution: 2.4.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-28481 (Medium) detected in socket.io-2.1.1.tgz - ## CVE-2020-28481 - Medium Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>socket.io-2.1.1.tgz</b></p></summary> <p>node.js realtime framework server</p> <p>Library home page: <a href="https://registry.npmjs.org/socket.io/-/socket.io-2.1.1.tgz">https://registry.npmjs.org/socket.io/-/socket.io-2.1.1.tgz</a></p> <p>Path to dependency file: juice-shop/frontend/package.json</p> <p>Path to vulnerable library: juice-shop/frontend/node_modules/socket.io/package.json</p> <p> Dependency Hierarchy: - karma-4.4.1.tgz (Root Library) - :x: **socket.io-2.1.1.tgz** (Vulnerable Library) <p>Found in HEAD commit: <a href="https://github.com/t2kx/juice-shop/commit/55296eb516fcecd9328def6cf581ec52ba96b661">55296eb516fcecd9328def6cf581ec52ba96b661</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary> <p> The package socket.io before 2.4.0 are vulnerable to Insecure Defaults due to CORS Misconfiguration. All domains are whitelisted by default. <p>Publish Date: 2021-01-19 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2020-28481>CVE-2020-28481</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.3</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: Low - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: Low - Integrity Impact: None - Availability Impact: None </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary> <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-28481">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-28481</a></p> <p>Release Date: 2021-01-19</p> <p>Fix Resolution: 2.4.0</p> </p> </details> <p></p> *** Step up your Open Source Security Game with WhiteSource [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
non_test
cve medium detected in socket io tgz cve medium severity vulnerability vulnerable library socket io tgz node js realtime framework server library home page a href path to dependency file juice shop frontend package json path to vulnerable library juice shop frontend node modules socket io package json dependency hierarchy karma tgz root library x socket io tgz vulnerable library found in head commit a href vulnerability details the package socket io before are vulnerable to insecure defaults due to cors misconfiguration all domains are whitelisted by default publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity low privileges required low user interaction none scope unchanged impact metrics confidentiality impact low integrity impact none availability impact none for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution step up your open source security game with whitesource
0
240,047
19,988,565,118
IssuesEvent
2022-01-31 01:12:01
Airbenders-490/AirbendersFE
https://api.github.com/repos/Airbenders-490/AirbendersFE
closed
[STUD-106] As a student, I want to be able to view other participant’s profile to see whether they would be a good fit for my team.
acceptance test RELEASE 1
**Trigger:** - A class participant is selected **Acceptance Criteria:** - Visiting your own profile allows for the Settings feature - Visiting another user is only a read-only process - If you were in a team with a participant, the endorsement feature is available on their profile **Conditions of Success:** - The user profile is displayed with all necessary information **User Acceptance Flow:** - User searches for a participant in a class - User clicks on the participant - User is able to view the other person's profile [System Testing](https://drive.google.com/file/d/1HsdXslT4W5grNRefTOz0IhkEhAG5QNUn/view?usp=sharing)
1.0
[STUD-106] As a student, I want to be able to view other participant’s profile to see whether they would be a good fit for my team. - **Trigger:** - A class participant is selected **Acceptance Criteria:** - Visiting your own profile allows for the Settings feature - Visiting another user is only a read-only process - If you were in a team with a participant, the endorsement feature is available on their profile **Conditions of Success:** - The user profile is displayed with all necessary information **User Acceptance Flow:** - User searches for a participant in a class - User clicks on the participant - User is able to view the other person's profile [System Testing](https://drive.google.com/file/d/1HsdXslT4W5grNRefTOz0IhkEhAG5QNUn/view?usp=sharing)
test
as a student i want to be able to view other participant’s profile to see whether they would be a good fit for my team trigger a class participant is selected acceptance criteria visiting your own profile allows for the settings feature visiting another user is only a read only process if you were in a team with a participant the endorsement feature is available on their profile conditions of success the user profile is displayed with all necessary information user acceptance flow user searches for a participant in a class user clicks on the participant user is able to view the other person s profile
1
279,951
24,268,000,677
IssuesEvent
2022-09-28 08:04:02
modin-project/modin
https://api.github.com/repos/modin-project/modin
opened
TEST: CI: flaky "Error response from daemon" from docker in set_up_sql_server
Testing 📈 CI Flaky Test P3
Error [here](https://github.com/modin-project/modin/actions/runs/3141086969/jobs/5103180310#logs) from the `set_up_sql_server` step of `test-ubuntu` in a CI run on a PR: ``` ./.github/workflows/sql_server/set_up_sql_server.sh shell: /usr/bin/bash -l {0} env: MODIN_ENGINE: ray MODIN_TEST_READ_FROM_SQL_SERVER: true MODIN_TEST_READ_FROM_POSTGRES: true MODIN_MEMORY: 1000000000 CONDA: /usr/share/miniconda[3](https://github.com/modin-project/modin/actions/runs/3141086969/jobs/5103180310#step:32:3) CONDA_PKGS_DIR: /home/runner/conda_pkgs_dir Error response from daemon: received unexpected HTTP status: [5](https://github.com/modin-project/modin/actions/runs/3141086969/jobs/5103180310#step:32:5)00 Internal Server Error ```
2.0
TEST: CI: flaky "Error response from daemon" from docker in set_up_sql_server - Error [here](https://github.com/modin-project/modin/actions/runs/3141086969/jobs/5103180310#logs) from the `set_up_sql_server` step of `test-ubuntu` in a CI run on a PR: ``` ./.github/workflows/sql_server/set_up_sql_server.sh shell: /usr/bin/bash -l {0} env: MODIN_ENGINE: ray MODIN_TEST_READ_FROM_SQL_SERVER: true MODIN_TEST_READ_FROM_POSTGRES: true MODIN_MEMORY: 1000000000 CONDA: /usr/share/miniconda[3](https://github.com/modin-project/modin/actions/runs/3141086969/jobs/5103180310#step:32:3) CONDA_PKGS_DIR: /home/runner/conda_pkgs_dir Error response from daemon: received unexpected HTTP status: [5](https://github.com/modin-project/modin/actions/runs/3141086969/jobs/5103180310#step:32:5)00 Internal Server Error ```
test
test ci flaky error response from daemon from docker in set up sql server error from the set up sql server step of test ubuntu in a ci run on a pr github workflows sql server set up sql server sh shell usr bin bash l env modin engine ray modin test read from sql server true modin test read from postgres true modin memory conda usr share miniconda conda pkgs dir home runner conda pkgs dir error response from daemon received unexpected http status internal server error
1
280,300
24,292,533,976
IssuesEvent
2022-09-29 07:28:46
xi-effect/xieffect-backend
https://api.github.com/repos/xi-effect/xieffect-backend
closed
Refactor News Tests
testing refactor
Когда делали новости, тесты были пропущены, т.к. фреймворк для тестирования был ужасен. Новый фреймворк уже готов в ветке `feat/better-tests` (#145). Поэтому заведена эта задачка, чтобы попробовать писать нормальные тесты для sio-интерефейсов. Продолжать в ветке, созданной от `feat/better-tests` ### Новые утилиты для тестирования Будут расписаны в #145, а также можно смотреть документацию в файле `xieffect/common/testing.py` (скоро™) ### Правки по тестам - [x] Не news, а post(s), особенно когда речь об одной новости - [x] Использовать .get вместо []: тесты не должны падать с KeyError - [x] Не угадываем idшники, а узнаём их и используем - [x] Функция вызываемая 1 раз не должна быть функцией - [x] Функции можно объявлять внутри друг друга, чтобы использовать внутри вещи вроде socketio_client без передачи в аргументах - [x] Перед сравнением с чем-то, что не None, проврять на None не нужно - [x] Если в других тестах не так, значит другие тесты кривые, но об этом стоит сообщить)) ### Правки к коду - [x] В индекс модели Post-а "deleted" не нужен, он же всегда True
1.0
Refactor News Tests - Когда делали новости, тесты были пропущены, т.к. фреймворк для тестирования был ужасен. Новый фреймворк уже готов в ветке `feat/better-tests` (#145). Поэтому заведена эта задачка, чтобы попробовать писать нормальные тесты для sio-интерефейсов. Продолжать в ветке, созданной от `feat/better-tests` ### Новые утилиты для тестирования Будут расписаны в #145, а также можно смотреть документацию в файле `xieffect/common/testing.py` (скоро™) ### Правки по тестам - [x] Не news, а post(s), особенно когда речь об одной новости - [x] Использовать .get вместо []: тесты не должны падать с KeyError - [x] Не угадываем idшники, а узнаём их и используем - [x] Функция вызываемая 1 раз не должна быть функцией - [x] Функции можно объявлять внутри друг друга, чтобы использовать внутри вещи вроде socketio_client без передачи в аргументах - [x] Перед сравнением с чем-то, что не None, проврять на None не нужно - [x] Если в других тестах не так, значит другие тесты кривые, но об этом стоит сообщить)) ### Правки к коду - [x] В индекс модели Post-а "deleted" не нужен, он же всегда True
test
refactor news tests когда делали новости тесты были пропущены т к фреймворк для тестирования был ужасен новый фреймворк уже готов в ветке feat better tests поэтому заведена эта задачка чтобы попробовать писать нормальные тесты для sio интерефейсов продолжать в ветке созданной от feat better tests новые утилиты для тестирования будут расписаны в а также можно смотреть документацию в файле xieffect common testing py скоро™ правки по тестам не news а post s особенно когда речь об одной новости использовать get вместо тесты не должны падать с keyerror не угадываем idшники а узнаём их и используем функция вызываемая раз не должна быть функцией функции можно объявлять внутри друг друга чтобы использовать внутри вещи вроде socketio client без передачи в аргументах перед сравнением с чем то что не none проврять на none не нужно если в других тестах не так значит другие тесты кривые но об этом стоит сообщить правки к коду в индекс модели post а deleted не нужен он же всегда true
1
315,616
27,090,403,861
IssuesEvent
2023-02-14 20:31:39
nrwl/nx
https://api.github.com/repos/nrwl/nx
closed
After a new Angular workspace has been created, nx test on this app is failing
type: bug blocked: repro needed scope: testing tools scope: angular stale
### Current Behavior `nx run xxx:test` trigger an error ### Expected Behavior test should run has expected ### Github Repo _No response_ ### Steps to Reproduce 1. run `npx create-nx-workspace@latest --name xxx --appName xxx --preset angular-monorepo --style scss --nxCloud` 2. run `cd xxx` 3. run `nx run xxx:test` ### Nx Report ```shell NX Report complete - copy this into the issue template Node : 18.13.0 OS : darwin x64 npm : 8.19.3 nx : 15.5.1 @nrwl/angular : 15.5.1 @nrwl/cypress : 15.5.1 @nrwl/detox : Not Found @nrwl/devkit : 15.5.1 @nrwl/esbuild : Not Found @nrwl/eslint-plugin-nx : 15.5.1 @nrwl/expo : Not Found @nrwl/express : Not Found @nrwl/jest : 15.5.1 @nrwl/js : 15.5.1 @nrwl/linter : 15.5.1 @nrwl/nest : Not Found @nrwl/next : Not Found @nrwl/node : Not Found @nrwl/nx-cloud : Not Found @nrwl/nx-plugin : Not Found @nrwl/react : Not Found @nrwl/react-native : Not Found @nrwl/rollup : Not Found @nrwl/schematics : Not Found @nrwl/storybook : Not Found @nrwl/web : Not Found @nrwl/webpack : 15.5.1 @nrwl/workspace : 15.5.1 @nrwl/vite : Not Found typescript : 4.8.4 --------------------------------------- Local workspace plugins: --------------------------------------- Community plugins: ``` ### Failure Logs ```shell nx run xxx:test --verbose > nx run xxx:test > NX Jest: Failed to parse the TypeScript config file /Users/myuser/Projects/xxx/apps/xxx/jest.config.ts TSError: ⨯ Unable to compile TypeScript: error TS5083: Cannot read file '/tsconfig.json'. Error: Jest: Failed to parse the TypeScript config file /Users/myuser/Projects/xxx/apps/xxx/jest.config.ts TSError: ⨯ Unable to compile TypeScript: error TS5083: Cannot read file '/tsconfig.json'. at readConfigFileAndSetRootDir (/Users/myuser/Projects/xxx/node_modules/jest-config/build/readConfigFileAndSetRootDir.js:136:13) at async readConfig (/Users/myuser/Projects/xxx/node_modules/jest-config/build/index.js:216:18) ``` ### Additional Information seems to work in another desktop. seems to work too, when i copy tsconfig.base.json to tsconfig.json, like has 'cwd' was wrong and targeted rootDir instead of xxx app.
1.0
After a new Angular workspace has been created, nx test on this app is failing - ### Current Behavior `nx run xxx:test` trigger an error ### Expected Behavior test should run has expected ### Github Repo _No response_ ### Steps to Reproduce 1. run `npx create-nx-workspace@latest --name xxx --appName xxx --preset angular-monorepo --style scss --nxCloud` 2. run `cd xxx` 3. run `nx run xxx:test` ### Nx Report ```shell NX Report complete - copy this into the issue template Node : 18.13.0 OS : darwin x64 npm : 8.19.3 nx : 15.5.1 @nrwl/angular : 15.5.1 @nrwl/cypress : 15.5.1 @nrwl/detox : Not Found @nrwl/devkit : 15.5.1 @nrwl/esbuild : Not Found @nrwl/eslint-plugin-nx : 15.5.1 @nrwl/expo : Not Found @nrwl/express : Not Found @nrwl/jest : 15.5.1 @nrwl/js : 15.5.1 @nrwl/linter : 15.5.1 @nrwl/nest : Not Found @nrwl/next : Not Found @nrwl/node : Not Found @nrwl/nx-cloud : Not Found @nrwl/nx-plugin : Not Found @nrwl/react : Not Found @nrwl/react-native : Not Found @nrwl/rollup : Not Found @nrwl/schematics : Not Found @nrwl/storybook : Not Found @nrwl/web : Not Found @nrwl/webpack : 15.5.1 @nrwl/workspace : 15.5.1 @nrwl/vite : Not Found typescript : 4.8.4 --------------------------------------- Local workspace plugins: --------------------------------------- Community plugins: ``` ### Failure Logs ```shell nx run xxx:test --verbose > nx run xxx:test > NX Jest: Failed to parse the TypeScript config file /Users/myuser/Projects/xxx/apps/xxx/jest.config.ts TSError: ⨯ Unable to compile TypeScript: error TS5083: Cannot read file '/tsconfig.json'. Error: Jest: Failed to parse the TypeScript config file /Users/myuser/Projects/xxx/apps/xxx/jest.config.ts TSError: ⨯ Unable to compile TypeScript: error TS5083: Cannot read file '/tsconfig.json'. at readConfigFileAndSetRootDir (/Users/myuser/Projects/xxx/node_modules/jest-config/build/readConfigFileAndSetRootDir.js:136:13) at async readConfig (/Users/myuser/Projects/xxx/node_modules/jest-config/build/index.js:216:18) ``` ### Additional Information seems to work in another desktop. seems to work too, when i copy tsconfig.base.json to tsconfig.json, like has 'cwd' was wrong and targeted rootDir instead of xxx app.
test
after a new angular workspace has been created nx test on this app is failing current behavior nx run xxx test trigger an error expected behavior test should run has expected github repo no response steps to reproduce run npx create nx workspace latest name xxx appname xxx preset angular monorepo style scss nxcloud run cd xxx run nx run xxx test nx report shell nx report complete copy this into the issue template node os darwin npm nx nrwl angular nrwl cypress nrwl detox not found nrwl devkit nrwl esbuild not found nrwl eslint plugin nx nrwl expo not found nrwl express not found nrwl jest nrwl js nrwl linter nrwl nest not found nrwl next not found nrwl node not found nrwl nx cloud not found nrwl nx plugin not found nrwl react not found nrwl react native not found nrwl rollup not found nrwl schematics not found nrwl storybook not found nrwl web not found nrwl webpack nrwl workspace nrwl vite not found typescript local workspace plugins community plugins failure logs shell nx run xxx test verbose nx run xxx test nx jest failed to parse the typescript config file users myuser projects xxx apps xxx jest config ts tserror ⨯ unable to compile typescript error cannot read file tsconfig json error jest failed to parse the typescript config file users myuser projects xxx apps xxx jest config ts tserror ⨯ unable to compile typescript error cannot read file tsconfig json at readconfigfileandsetrootdir users myuser projects xxx node modules jest config build readconfigfileandsetrootdir js at async readconfig users myuser projects xxx node modules jest config build index js additional information seems to work in another desktop seems to work too when i copy tsconfig base json to tsconfig json like has cwd was wrong and targeted rootdir instead of xxx app
1
181,385
14,861,284,781
IssuesEvent
2021-01-18 22:27:16
chreden/trview
https://api.github.com/repos/chreden/trview
opened
Add example Lua scripts to the readme
documentation scripting
Now that there is a Lua integration, actually document that it exists and have some examples in the readme.
1.0
Add example Lua scripts to the readme - Now that there is a Lua integration, actually document that it exists and have some examples in the readme.
non_test
add example lua scripts to the readme now that there is a lua integration actually document that it exists and have some examples in the readme
0
748,205
26,111,979,905
IssuesEvent
2022-12-27 21:34:14
verocloud/obsidian-hemingway
https://api.github.com/repos/verocloud/obsidian-hemingway
closed
Default colors
enhancement priority:low
Add the following colors as default for the already implemented retext plugins: Background colors: #dd4339 #af354b #81275d #704d71 #5e7284 #53825f #49913b #8bad36 #cdc930 #d19e21 #d47312 #d95b26 Foreground color: #002b36
1.0
Default colors - Add the following colors as default for the already implemented retext plugins: Background colors: #dd4339 #af354b #81275d #704d71 #5e7284 #53825f #49913b #8bad36 #cdc930 #d19e21 #d47312 #d95b26 Foreground color: #002b36
non_test
default colors add the following colors as default for the already implemented retext plugins background colors foreground color
0
299,702
25,919,441,411
IssuesEvent
2022-12-15 20:24:07
elastic/kibana
https://api.github.com/repos/elastic/kibana
closed
Failing test: Jest Tests.x-pack/plugins/triggers_actions_ui/public/application/lib - transformActionVariables should return useWithTripleBracesInTemplates with action variables if specified
failed-test Team:ResponseOps
A test failed on a tracked branch ``` Error: expect(received).toEqual(expected) // deep equality - Expected - 1 + Received + 1 @@ -42,11 +42,11 @@ Object { "description": "The human readable name of the action group of the alert that scheduled actions for the rule.", "name": "alert.actionGroupName", }, Object { - "description": "A flag on the alert that indicates whether the alert is flapping.", + "description": "A flag on the alert that indicates whether the alert status is changing repeatedly.", "name": "alert.flapping", }, Object { "description": "The configured server.publicBaseUrl value or empty string if not configured.", "name": "kibanaBaseUrl", at Object.toEqual (/var/lib/buildkite-agent/builds/kb-n2-4-spot-bbdc3b322f74c386/elastic/kibana-on-merge/kibana/x-pack/plugins/triggers_actions_ui/public/application/lib/action_variables.test.ts:195:65) at Promise.then.completed (/var/lib/buildkite-agent/builds/kb-n2-4-spot-bbdc3b322f74c386/elastic/kibana-on-merge/kibana/node_modules/jest-circus/build/utils.js:289:28) at new Promise (<anonymous>) at callAsyncCircusFn (/var/lib/buildkite-agent/builds/kb-n2-4-spot-bbdc3b322f74c386/elastic/kibana-on-merge/kibana/node_modules/jest-circus/build/utils.js:222:10) at _callCircusTest (/var/lib/buildkite-agent/builds/kb-n2-4-spot-bbdc3b322f74c386/elastic/kibana-on-merge/kibana/node_modules/jest-circus/build/run.js:248:40) at _runTest (/var/lib/buildkite-agent/builds/kb-n2-4-spot-bbdc3b322f74c386/elastic/kibana-on-merge/kibana/node_modules/jest-circus/build/run.js:184:3) at _runTestsForDescribeBlock (/var/lib/buildkite-agent/builds/kb-n2-4-spot-bbdc3b322f74c386/elastic/kibana-on-merge/kibana/node_modules/jest-circus/build/run.js:86:9) at _runTestsForDescribeBlock (/var/lib/buildkite-agent/builds/kb-n2-4-spot-bbdc3b322f74c386/elastic/kibana-on-merge/kibana/node_modules/jest-circus/build/run.js:81:9) at run (/var/lib/buildkite-agent/builds/kb-n2-4-spot-bbdc3b322f74c386/elastic/kibana-on-merge/kibana/node_modules/jest-circus/build/run.js:26:3) at runAndTransformResultsToJestFormat (/var/lib/buildkite-agent/builds/kb-n2-4-spot-bbdc3b322f74c386/elastic/kibana-on-merge/kibana/node_modules/jest-circus/build/legacy-code-todo-rewrite/jestAdapterInit.js:120:21) at jestAdapter (/var/lib/buildkite-agent/builds/kb-n2-4-spot-bbdc3b322f74c386/elastic/kibana-on-merge/kibana/node_modules/jest-circus/build/legacy-code-todo-rewrite/jestAdapter.js:79:19) at runTestInternal (/var/lib/buildkite-agent/builds/kb-n2-4-spot-bbdc3b322f74c386/elastic/kibana-on-merge/kibana/node_modules/jest-runner/build/runTest.js:367:16) at runTest (/var/lib/buildkite-agent/builds/kb-n2-4-spot-bbdc3b322f74c386/elastic/kibana-on-merge/kibana/node_modules/jest-runner/build/runTest.js:444:34) ``` First failure: [CI Build - main](https://buildkite.com/elastic/kibana-on-merge/builds/24872#01851239-1823-417c-a01b-bd0dc5985d8d) <!-- kibanaCiData = {"failed-test":{"test.class":"Jest Tests.x-pack/plugins/triggers_actions_ui/public/application/lib","test.name":"transformActionVariables should return useWithTripleBracesInTemplates with action variables if specified","test.failCount":4}} -->
1.0
Failing test: Jest Tests.x-pack/plugins/triggers_actions_ui/public/application/lib - transformActionVariables should return useWithTripleBracesInTemplates with action variables if specified - A test failed on a tracked branch ``` Error: expect(received).toEqual(expected) // deep equality - Expected - 1 + Received + 1 @@ -42,11 +42,11 @@ Object { "description": "The human readable name of the action group of the alert that scheduled actions for the rule.", "name": "alert.actionGroupName", }, Object { - "description": "A flag on the alert that indicates whether the alert is flapping.", + "description": "A flag on the alert that indicates whether the alert status is changing repeatedly.", "name": "alert.flapping", }, Object { "description": "The configured server.publicBaseUrl value or empty string if not configured.", "name": "kibanaBaseUrl", at Object.toEqual (/var/lib/buildkite-agent/builds/kb-n2-4-spot-bbdc3b322f74c386/elastic/kibana-on-merge/kibana/x-pack/plugins/triggers_actions_ui/public/application/lib/action_variables.test.ts:195:65) at Promise.then.completed (/var/lib/buildkite-agent/builds/kb-n2-4-spot-bbdc3b322f74c386/elastic/kibana-on-merge/kibana/node_modules/jest-circus/build/utils.js:289:28) at new Promise (<anonymous>) at callAsyncCircusFn (/var/lib/buildkite-agent/builds/kb-n2-4-spot-bbdc3b322f74c386/elastic/kibana-on-merge/kibana/node_modules/jest-circus/build/utils.js:222:10) at _callCircusTest (/var/lib/buildkite-agent/builds/kb-n2-4-spot-bbdc3b322f74c386/elastic/kibana-on-merge/kibana/node_modules/jest-circus/build/run.js:248:40) at _runTest (/var/lib/buildkite-agent/builds/kb-n2-4-spot-bbdc3b322f74c386/elastic/kibana-on-merge/kibana/node_modules/jest-circus/build/run.js:184:3) at _runTestsForDescribeBlock (/var/lib/buildkite-agent/builds/kb-n2-4-spot-bbdc3b322f74c386/elastic/kibana-on-merge/kibana/node_modules/jest-circus/build/run.js:86:9) at _runTestsForDescribeBlock (/var/lib/buildkite-agent/builds/kb-n2-4-spot-bbdc3b322f74c386/elastic/kibana-on-merge/kibana/node_modules/jest-circus/build/run.js:81:9) at run (/var/lib/buildkite-agent/builds/kb-n2-4-spot-bbdc3b322f74c386/elastic/kibana-on-merge/kibana/node_modules/jest-circus/build/run.js:26:3) at runAndTransformResultsToJestFormat (/var/lib/buildkite-agent/builds/kb-n2-4-spot-bbdc3b322f74c386/elastic/kibana-on-merge/kibana/node_modules/jest-circus/build/legacy-code-todo-rewrite/jestAdapterInit.js:120:21) at jestAdapter (/var/lib/buildkite-agent/builds/kb-n2-4-spot-bbdc3b322f74c386/elastic/kibana-on-merge/kibana/node_modules/jest-circus/build/legacy-code-todo-rewrite/jestAdapter.js:79:19) at runTestInternal (/var/lib/buildkite-agent/builds/kb-n2-4-spot-bbdc3b322f74c386/elastic/kibana-on-merge/kibana/node_modules/jest-runner/build/runTest.js:367:16) at runTest (/var/lib/buildkite-agent/builds/kb-n2-4-spot-bbdc3b322f74c386/elastic/kibana-on-merge/kibana/node_modules/jest-runner/build/runTest.js:444:34) ``` First failure: [CI Build - main](https://buildkite.com/elastic/kibana-on-merge/builds/24872#01851239-1823-417c-a01b-bd0dc5985d8d) <!-- kibanaCiData = {"failed-test":{"test.class":"Jest Tests.x-pack/plugins/triggers_actions_ui/public/application/lib","test.name":"transformActionVariables should return useWithTripleBracesInTemplates with action variables if specified","test.failCount":4}} -->
test
failing test jest tests x pack plugins triggers actions ui public application lib transformactionvariables should return usewithtriplebracesintemplates with action variables if specified a test failed on a tracked branch error expect received toequal expected deep equality expected received object description the human readable name of the action group of the alert that scheduled actions for the rule name alert actiongroupname object description a flag on the alert that indicates whether the alert is flapping description a flag on the alert that indicates whether the alert status is changing repeatedly name alert flapping object description the configured server publicbaseurl value or empty string if not configured name kibanabaseurl at object toequal var lib buildkite agent builds kb spot elastic kibana on merge kibana x pack plugins triggers actions ui public application lib action variables test ts at promise then completed var lib buildkite agent builds kb spot elastic kibana on merge kibana node modules jest circus build utils js at new promise at callasynccircusfn var lib buildkite agent builds kb spot elastic kibana on merge kibana node modules jest circus build utils js at callcircustest var lib buildkite agent builds kb spot elastic kibana on merge kibana node modules jest circus build run js at runtest var lib buildkite agent builds kb spot elastic kibana on merge kibana node modules jest circus build run js at runtestsfordescribeblock var lib buildkite agent builds kb spot elastic kibana on merge kibana node modules jest circus build run js at runtestsfordescribeblock var lib buildkite agent builds kb spot elastic kibana on merge kibana node modules jest circus build run js at run var lib buildkite agent builds kb spot elastic kibana on merge kibana node modules jest circus build run js at runandtransformresultstojestformat var lib buildkite agent builds kb spot elastic kibana on merge kibana node modules jest circus build legacy code todo rewrite jestadapterinit js at jestadapter var lib buildkite agent builds kb spot elastic kibana on merge kibana node modules jest circus build legacy code todo rewrite jestadapter js at runtestinternal var lib buildkite agent builds kb spot elastic kibana on merge kibana node modules jest runner build runtest js at runtest var lib buildkite agent builds kb spot elastic kibana on merge kibana node modules jest runner build runtest js first failure
1
380,224
26,408,889,102
IssuesEvent
2023-01-13 10:27:36
Avaiga/taipy-doc
https://api.github.com/repos/Avaiga/taipy-doc
closed
Create an histogram charts section
🟥 Priority: Critical 🖰 GUI 📄 Documentation
**Description** Histogram charts are accessible through the Taipy Gui API. We should provide examples of this type of charts. Create a few relevant samples that demonstrate the [Histogram Charts](https://plotly.com/javascript/histograms/) Plotly feature. Examples for the CS team can be looked at in [this document](https://docs.google.com/document/d/1cpIIJEekyp1OLtwAja9gUHdfujoZs63F/edit#). **Expected change** There should be a new charts sub-section dedicated to histogram charts.
1.0
Create an histogram charts section - **Description** Histogram charts are accessible through the Taipy Gui API. We should provide examples of this type of charts. Create a few relevant samples that demonstrate the [Histogram Charts](https://plotly.com/javascript/histograms/) Plotly feature. Examples for the CS team can be looked at in [this document](https://docs.google.com/document/d/1cpIIJEekyp1OLtwAja9gUHdfujoZs63F/edit#). **Expected change** There should be a new charts sub-section dedicated to histogram charts.
non_test
create an histogram charts section description histogram charts are accessible through the taipy gui api we should provide examples of this type of charts create a few relevant samples that demonstrate the plotly feature examples for the cs team can be looked at in expected change there should be a new charts sub section dedicated to histogram charts
0
84,500
24,328,674,914
IssuesEvent
2022-09-30 17:09:16
dotnet/arcade
https://api.github.com/repos/dotnet/arcade
closed
Build failed: dotnet-arcade-validation-official/main #20220929.3
Build Failed
Build [#20220929.3](https://dev.azure.com/dnceng/7ea9116e-9fac-403d-b258-b31fcf1bb293/_build/results?buildId=2007804) partiallySucceeded ## :warning: : internal / dotnet-arcade-validation-official partiallySucceeded ### Summary **Finished** - Fri, 30 Sep 2022 16:51:10 GMT **Duration** - 97 minutes **Requested for** - Microsoft.VisualStudio.Services.TFS **Reason** - schedule ### Details #### Promote Arcade to '.NET Eng - Latest' channel - :warning: - [[Log]](https://dev.azure.com/dnceng/7ea9116e-9fac-403d-b258-b31fcf1bb293/_apis/build/builds/2007804/logs/465) - The latest build on 'main' branch for the 'installer' repository was not successful. #### Create BAR ID Tag - :x: - [[Log]](https://dev.azure.com/dnceng/7ea9116e-9fac-403d-b258-b31fcf1bb293/_apis/build/builds/2007804/logs/362) - Artifact Create_BAR_ID_Tag_Create_BAR_ID_Tag_SBOM already exists for build 2007804. ### Changes
1.0
Build failed: dotnet-arcade-validation-official/main #20220929.3 - Build [#20220929.3](https://dev.azure.com/dnceng/7ea9116e-9fac-403d-b258-b31fcf1bb293/_build/results?buildId=2007804) partiallySucceeded ## :warning: : internal / dotnet-arcade-validation-official partiallySucceeded ### Summary **Finished** - Fri, 30 Sep 2022 16:51:10 GMT **Duration** - 97 minutes **Requested for** - Microsoft.VisualStudio.Services.TFS **Reason** - schedule ### Details #### Promote Arcade to '.NET Eng - Latest' channel - :warning: - [[Log]](https://dev.azure.com/dnceng/7ea9116e-9fac-403d-b258-b31fcf1bb293/_apis/build/builds/2007804/logs/465) - The latest build on 'main' branch for the 'installer' repository was not successful. #### Create BAR ID Tag - :x: - [[Log]](https://dev.azure.com/dnceng/7ea9116e-9fac-403d-b258-b31fcf1bb293/_apis/build/builds/2007804/logs/362) - Artifact Create_BAR_ID_Tag_Create_BAR_ID_Tag_SBOM already exists for build 2007804. ### Changes
non_test
build failed dotnet arcade validation official main build partiallysucceeded warning internal dotnet arcade validation official partiallysucceeded summary finished fri sep gmt duration minutes requested for microsoft visualstudio services tfs reason schedule details promote arcade to net eng latest channel warning the latest build on main branch for the installer repository was not successful create bar id tag x artifact create bar id tag create bar id tag sbom already exists for build changes
0
386,261
26,674,448,302
IssuesEvent
2023-01-26 13:11:51
hzi-braunschweig/SORMAS-Project
https://api.github.com/repos/hzi-braunschweig/SORMAS-Project
opened
Improve documentation for SORMAS 2 SORMAS setup
backend documentation task
<!-- Please read the Contributing guidelines (https://github.com/hzi-braunschweig/SORMAS-Project/blob/development/docs/CONTRIBUTING.md) before submitting an issue. You don't have to remove this comment or any other comment from this issue as they will automatically be hidden. --> ### Problem Description <!-- Mandatory --> ### Proposed Solution <!-- Mandatory --> ### Possible Alternatives <!-- Optional --> ### Additional Information <!-- Optional -->
1.0
Improve documentation for SORMAS 2 SORMAS setup - <!-- Please read the Contributing guidelines (https://github.com/hzi-braunschweig/SORMAS-Project/blob/development/docs/CONTRIBUTING.md) before submitting an issue. You don't have to remove this comment or any other comment from this issue as they will automatically be hidden. --> ### Problem Description <!-- Mandatory --> ### Proposed Solution <!-- Mandatory --> ### Possible Alternatives <!-- Optional --> ### Additional Information <!-- Optional -->
non_test
improve documentation for sormas sormas setup please read the contributing guidelines before submitting an issue you don t have to remove this comment or any other comment from this issue as they will automatically be hidden problem description proposed solution possible alternatives additional information
0
363,219
10,739,531,246
IssuesEvent
2019-10-29 16:31:07
AY1920S1-CS2103-F10-2/main
https://api.github.com/repos/AY1920S1-CS2103-F10-2/main
closed
Grocery List Commands: Implement additional grocery list features for in-memory model
priority.Medium
- [x] Sort by expiry date or alphabetical - [x] Filter by tag - [x] Find by keyword - [x] Help (from v1.2)
1.0
Grocery List Commands: Implement additional grocery list features for in-memory model - - [x] Sort by expiry date or alphabetical - [x] Filter by tag - [x] Find by keyword - [x] Help (from v1.2)
non_test
grocery list commands implement additional grocery list features for in memory model sort by expiry date or alphabetical filter by tag find by keyword help from
0
318,487
27,306,612,501
IssuesEvent
2023-02-24 08:48:40
Joystream/pioneer
https://api.github.com/repos/Joystream/pioneer
closed
[feature request] Forum Category Description is cut
scope:forum qa-task community-dev qa-tested-ready-for-prod SP:2 release:1.1.0 release:1.3.0
**Taken at**: https://dao.joystream.org/#/forum **Fields**: - Which feature are you missing?: Forum Category Description is cut - What problem would that solve for you?: Please check Forum Category with long description. It is cut. There is no way you can read the whole description. I hope it can be improved by putting &#39;Show More&#39; like feature. - Share your Github or Discord so we can get in touch: songoku1691 <img width="548" alt="Screenshot 2022-11-29 at 17 51 47" src="https://user-images.githubusercontent.com/93924525/204546821-96a7afed-e72d-42fa-a3f0-c555b2f24a04.png"> **Browser**: Chrome 107 (Windows 10) **Screen size**: 1366x768 **Browser size**: 1707x811 **[Open #27 in Usersnap](https://app.usersnap.com/l/feedback/e572521b-5040-4717-935b-89903a3e12c2?utm_medium=integration&utm_campaign=integration&utm_content=open)** Powered by **[Usersnap](https://usersnap.com/?utm_source=product&amp;utm_medium=poweredbylink&amp;utm_campaign=github_entry)**.
1.0
[feature request] Forum Category Description is cut - **Taken at**: https://dao.joystream.org/#/forum **Fields**: - Which feature are you missing?: Forum Category Description is cut - What problem would that solve for you?: Please check Forum Category with long description. It is cut. There is no way you can read the whole description. I hope it can be improved by putting &#39;Show More&#39; like feature. - Share your Github or Discord so we can get in touch: songoku1691 <img width="548" alt="Screenshot 2022-11-29 at 17 51 47" src="https://user-images.githubusercontent.com/93924525/204546821-96a7afed-e72d-42fa-a3f0-c555b2f24a04.png"> **Browser**: Chrome 107 (Windows 10) **Screen size**: 1366x768 **Browser size**: 1707x811 **[Open #27 in Usersnap](https://app.usersnap.com/l/feedback/e572521b-5040-4717-935b-89903a3e12c2?utm_medium=integration&utm_campaign=integration&utm_content=open)** Powered by **[Usersnap](https://usersnap.com/?utm_source=product&amp;utm_medium=poweredbylink&amp;utm_campaign=github_entry)**.
test
forum category description is cut taken at fields which feature are you missing forum category description is cut what problem would that solve for you please check forum category with long description it is cut there is no way you can read the whole description i hope it can be improved by putting show more like feature share your github or discord so we can get in touch img width alt screenshot at src browser chrome windows screen size browser size powered by
1
608,525
18,841,211,429
IssuesEvent
2021-11-11 09:47:03
webcompat/web-bugs
https://api.github.com/repos/webcompat/web-bugs
closed
www.sfgate.com - design is broken
browser-firefox-mobile priority-normal engine-gecko
<!-- @browser: Firefox Mobile 94.0 --> <!-- @ua_header: Mozilla/5.0 (Android 11; Mobile; rv:94.0) Gecko/94.0 Firefox/94.0 --> <!-- @reported_with: android-components-reporter --> <!-- @public_url: https://github.com/webcompat/web-bugs/issues/93000 --> **URL**: https://www.sfgate.com/travel/article/death-valley-amargosa-opera-house-16595328.php **Browser / Version**: Firefox Mobile 94.0 **Operating System**: Android 11 **Tested Another Browser**: Yes Other **Problem type**: Design is broken **Description**: Images not loaded **Steps to Reproduce**: Pictures not loading, works on other browser <details> <summary>View the screenshot</summary> <img alt="Screenshot" src="https://webcompat.com/uploads/2021/11/8cc30e49-7dbc-4207-a3e0-35825d2fbf48.jpeg"> </details> <details> <summary>Browser Configuration</summary> <ul> <li>gfx.webrender.all: false</li><li>gfx.webrender.blob-images: true</li><li>gfx.webrender.enabled: false</li><li>image.mem.shared: true</li><li>buildID: 20211028161635</li><li>channel: release</li><li>hasTouchScreen: true</li><li>mixed active content blocked: false</li><li>mixed passive content blocked: false</li><li>tracking content blocked: false</li> </ul> </details> [View console log messages](https://webcompat.com/console_logs/2021/11/8842c7f5-9206-4000-8b71-cc2959219a48) _From [webcompat.com](https://webcompat.com/) with ❤️_
1.0
www.sfgate.com - design is broken - <!-- @browser: Firefox Mobile 94.0 --> <!-- @ua_header: Mozilla/5.0 (Android 11; Mobile; rv:94.0) Gecko/94.0 Firefox/94.0 --> <!-- @reported_with: android-components-reporter --> <!-- @public_url: https://github.com/webcompat/web-bugs/issues/93000 --> **URL**: https://www.sfgate.com/travel/article/death-valley-amargosa-opera-house-16595328.php **Browser / Version**: Firefox Mobile 94.0 **Operating System**: Android 11 **Tested Another Browser**: Yes Other **Problem type**: Design is broken **Description**: Images not loaded **Steps to Reproduce**: Pictures not loading, works on other browser <details> <summary>View the screenshot</summary> <img alt="Screenshot" src="https://webcompat.com/uploads/2021/11/8cc30e49-7dbc-4207-a3e0-35825d2fbf48.jpeg"> </details> <details> <summary>Browser Configuration</summary> <ul> <li>gfx.webrender.all: false</li><li>gfx.webrender.blob-images: true</li><li>gfx.webrender.enabled: false</li><li>image.mem.shared: true</li><li>buildID: 20211028161635</li><li>channel: release</li><li>hasTouchScreen: true</li><li>mixed active content blocked: false</li><li>mixed passive content blocked: false</li><li>tracking content blocked: false</li> </ul> </details> [View console log messages](https://webcompat.com/console_logs/2021/11/8842c7f5-9206-4000-8b71-cc2959219a48) _From [webcompat.com](https://webcompat.com/) with ❤️_
non_test
design is broken url browser version firefox mobile operating system android tested another browser yes other problem type design is broken description images not loaded steps to reproduce pictures not loading works on other browser view the screenshot img alt screenshot src browser configuration gfx webrender all false gfx webrender blob images true gfx webrender enabled false image mem shared true buildid channel release hastouchscreen true mixed active content blocked false mixed passive content blocked false tracking content blocked false from with ❤️
0
118,242
4,733,354,916
IssuesEvent
2016-10-19 10:53:25
openvstorage/framework
https://api.github.com/repos/openvstorage/framework
closed
vPools fails to create when the directory already exists in /mnt
priority_normal type_bug
When looking in `/mnt`, we see this: ``` root@cmp01:~# ls /mnt myvpool-40 ``` A leftover directory managed to fail the vpool creation: (as seen in `/var/log/upstart/ovs-volumedriver-vpool-40.log`) ``` 2016-04-13 11:48:30:169524 +0200 CEST -- fatal -- volumedriver_fs -- operator(): caught exception: boost::filesystem::status: Transport endpoint is not connected: "/mnt/myvpool-40" -- [0x00007f2ee07dc940] 2016-04-13 11:48:30:169601 +0200 CEST -- notice -- volumedriver_fs -- at_exit: Time spent executing user instructions (seconds): 0.484000 Time spent in operating system code (seconds): 0.632000 The maximum resident set size used, in kilobytes. 1930436 The number of page faults which were serviced without requiring any I/O: 7220 The number of page faults which were serviced by doing I/O: 0 The number of times PROCESSES was swapped entirely out of main memory: 0 The number of times the file system had to read from the disk: 0 The number of times the file system had to write to the disk: 624 The number of signals received: 0 The number of times PROCESSES voluntarily invoked a context switch: 302 The number of times an involuntary context switch took place: 169 -- [0x00007f2ee07dc940] ```
1.0
vPools fails to create when the directory already exists in /mnt - When looking in `/mnt`, we see this: ``` root@cmp01:~# ls /mnt myvpool-40 ``` A leftover directory managed to fail the vpool creation: (as seen in `/var/log/upstart/ovs-volumedriver-vpool-40.log`) ``` 2016-04-13 11:48:30:169524 +0200 CEST -- fatal -- volumedriver_fs -- operator(): caught exception: boost::filesystem::status: Transport endpoint is not connected: "/mnt/myvpool-40" -- [0x00007f2ee07dc940] 2016-04-13 11:48:30:169601 +0200 CEST -- notice -- volumedriver_fs -- at_exit: Time spent executing user instructions (seconds): 0.484000 Time spent in operating system code (seconds): 0.632000 The maximum resident set size used, in kilobytes. 1930436 The number of page faults which were serviced without requiring any I/O: 7220 The number of page faults which were serviced by doing I/O: 0 The number of times PROCESSES was swapped entirely out of main memory: 0 The number of times the file system had to read from the disk: 0 The number of times the file system had to write to the disk: 624 The number of signals received: 0 The number of times PROCESSES voluntarily invoked a context switch: 302 The number of times an involuntary context switch took place: 169 -- [0x00007f2ee07dc940] ```
non_test
vpools fails to create when the directory already exists in mnt when looking in mnt we see this root ls mnt myvpool a leftover directory managed to fail the vpool creation as seen in var log upstart ovs volumedriver vpool log cest fatal volumedriver fs operator caught exception boost filesystem status transport endpoint is not connected mnt myvpool cest notice volumedriver fs at exit time spent executing user instructions seconds time spent in operating system code seconds the maximum resident set size used in kilobytes the number of page faults which were serviced without requiring any i o the number of page faults which were serviced by doing i o the number of times processes was swapped entirely out of main memory the number of times the file system had to read from the disk the number of times the file system had to write to the disk the number of signals received the number of times processes voluntarily invoked a context switch the number of times an involuntary context switch took place
0
52,005
6,557,813,834
IssuesEvent
2017-09-06 18:52:05
unicef/etools-issues
https://api.github.com/repos/unicef/etools-issues
opened
Partners: "Date of Assessment" field - Shows incorrect required field message ALM 186
bug Partners PMP PMP-Redesign
Browser: Chrome Workspace: Jordan 1. Open a Partner 2. Add an Assessment 3. Populate field "Assessment Type" 4. The field "Date of Assessment" will show the message, "Assessment type is required" underneath it. Should show message, "Date of assessment is required" instead.
1.0
Partners: "Date of Assessment" field - Shows incorrect required field message ALM 186 - Browser: Chrome Workspace: Jordan 1. Open a Partner 2. Add an Assessment 3. Populate field "Assessment Type" 4. The field "Date of Assessment" will show the message, "Assessment type is required" underneath it. Should show message, "Date of assessment is required" instead.
non_test
partners date of assessment field shows incorrect required field message alm browser chrome workspace jordan open a partner add an assessment populate field assessment type the field date of assessment will show the message assessment type is required underneath it should show message date of assessment is required instead
0
58,006
16,330,672,462
IssuesEvent
2021-05-12 08:50:32
primefaces/primefaces
https://api.github.com/repos/primefaces/primefaces
closed
ClientWindow: decode first before add it to ExternalContext
defect
Otherwise `@PreDestroy` of `@ClientWindowScoped` beans will be broken in JSF 4
1.0
ClientWindow: decode first before add it to ExternalContext - Otherwise `@PreDestroy` of `@ClientWindowScoped` beans will be broken in JSF 4
non_test
clientwindow decode first before add it to externalcontext otherwise predestroy of clientwindowscoped beans will be broken in jsf
0
101,330
8,785,402,314
IssuesEvent
2018-12-20 12:53:38
elastic/elasticsearch
https://api.github.com/repos/elastic/elasticsearch
closed
[CI][ML] MlDistributedFailureIT.testLoseDedicatedMasterNode randomly fails on feature-jindex-master branch
:ml >test-failure v7.0.0
This test has been observed to fail occasionally in the `feature-jindex-master` branch. I have not yet managed to reproduce locally. I will shortly be muting the test as we need a green build to merge the branch in master. However, I am raising the issue to ensure we get to the bottom of this failure. Link to failure (one of them): https://elasticsearch-ci.elastic.co/job/elastic+elasticsearch+pull-request-2/2556/console Reproduce with: ``` ./gradlew :x-pack:plugin:ml:internalClusterTest -Dtests.seed=D2A618A38265651F -Dtests.class=org.elasticsearch.xpack.ml.integration.MlDistributedFailureIT -Dtests.method="testLoseDedicatedMasterNode" -Dtests.security.manager=true -Dtests.locale=be-BY -Dtests.timezone=Asia/Katmandu -Dcompiler.java=11 -Druntime.java=8 ``` Failure: ``` > Throwable #1: java.lang.AssertionError > at org.elasticsearch.xpack.ml.integration.MlDistributedFailureIT.lambda$run$15(MlDistributedFailureIT.java:298) > at org.elasticsearch.test.ESTestCase.assertBusy(ESTestCase.java:847) > at org.elasticsearch.test.ESTestCase.assertBusy(ESTestCase.java:821) > at org.elasticsearch.xpack.ml.integration.MlDistributedFailureIT.run(MlDistributedFailureIT.java:292) > at org.elasticsearch.xpack.ml.integration.MlDistributedFailureIT.testLoseDedicatedMasterNode(MlDistributedFailureIT.java:88) > at java.lang.Thread.run(Thread.java:748) > Suppressed: java.lang.AssertionError > at org.elasticsearch.xpack.ml.integration.MlDistributedFailureIT.lambda$run$15(MlDistributedFailureIT.java:298) > at org.elasticsearch.test.ESTestCase.assertBusy(ESTestCase.java:835) > ... 40 more > Suppressed: java.lang.AssertionError > at org.elasticsearch.xpack.ml.integration.MlDistributedFailureIT.lambda$run$15(MlDistributedFailureIT.java:298) > at org.elasticsearch.test.ESTestCase.assertBusy(ESTestCase.java:835) > ... 40 more > Suppressed: java.lang.AssertionError > at org.elasticsearch.xpack.ml.integration.MlDistributedFailureIT.lambda$run$15(MlDistributedFailureIT.java:298) > at org.elasticsearch.test.ESTestCase.assertBusy(ESTestCase.java:835) > ... 40 more > Suppressed: java.lang.AssertionError > at org.elasticsearch.xpack.ml.integration.MlDistributedFailureIT.lambda$run$15(MlDistributedFailureIT.java:298) > at org.elasticsearch.test.ESTestCase.assertBusy(ESTestCase.java:835) > ... 40 more > Suppressed: java.lang.AssertionError > at org.elasticsearch.xpack.ml.integration.MlDistributedFailureIT.lambda$run$15(MlDistributedFailureIT.java:298) > at org.elasticsearch.test.ESTestCase.assertBusy(ESTestCase.java:835) > ... 40 more > Suppressed: java.lang.AssertionError > at org.elasticsearch.xpack.ml.integration.MlDistributedFailureIT.lambda$run$15(MlDistributedFailureIT.java:298) > at org.elasticsearch.test.ESTestCase.assertBusy(ESTestCase.java:835) > ... 40 more > Suppressed: java.lang.AssertionError > at org.elasticsearch.xpack.ml.integration.MlDistributedFailureIT.lambda$run$15(MlDistributedFailureIT.java:298) > at org.elasticsearch.test.ESTestCase.assertBusy(ESTestCase.java:835) > ... 40 more > Suppressed: java.lang.AssertionError > at org.elasticsearch.xpack.ml.integration.MlDistributedFailureIT.lambda$run$15(MlDistributedFailureIT.java:298) > at org.elasticsearch.test.ESTestCase.assertBusy(ESTestCase.java:835) > ... 40 more > Suppressed: java.lang.AssertionError > at org.elasticsearch.xpack.ml.integration.MlDistributedFailureIT.lambda$run$15(MlDistributedFailureIT.java:298) > at org.elasticsearch.test.ESTestCase.assertBusy(ESTestCase.java:835) > ... 40 more > Suppressed: java.lang.AssertionError > at org.elasticsearch.xpack.ml.integration.MlDistributedFailureIT.lambda$run$15(MlDistributedFailureIT.java:298) > at org.elasticsearch.test.ESTestCase.assertBusy(ESTestCase.java:835) > ... 40 more > Suppressed: java.lang.AssertionError > at org.elasticsearch.xpack.ml.integration.MlDistributedFailureIT.lambda$run$15(MlDistributedFailureIT.java:298) > at org.elasticsearch.test.ESTestCase.assertBusy(ESTestCase.java:835) > ... 40 more > Suppressed: java.lang.AssertionError > at org.elasticsearch.xpack.ml.integration.MlDistributedFailureIT.lambda$run$15(MlDistributedFailureIT.java:298) > at org.elasticsearch.test.ESTestCase.assertBusy(ESTestCase.java:835) > ... 40 more > Suppressed: java.lang.AssertionError > at org.elasticsearch.xpack.ml.integration.MlDistributedFailureIT.lambda$run$15(MlDistributedFailureIT.java:298) > at org.elasticsearch.test.ESTestCase.assertBusy(ESTestCase.java:835) > ... 40 moreThrowable #2: java.lang.RuntimeException: Had to resort to force-stopping datafeed, something went wrong? > at org.elasticsearch.xpack.ml.support.BaseMlIntegTestCase.deleteAllDatafeeds(BaseMlIntegTestCase.java:296) > at org.elasticsearch.xpack.ml.support.BaseMlIntegTestCase.cleanupWorkaround(BaseMlIntegTestCase.java:209) > at java.lang.Thread.run(Thread.java:748) > Caused by: java.util.concurrent.ExecutionException: ElasticsearchStatusException[Cannot stop datafeed [data_feed_id] because the datafeed does not have an assigned node. Use force stop to stop the datafeed] > at org.elasticsearch.common.util.concurrent.BaseFuture$Sync.getValue(BaseFuture.java:266) > at org.elasticsearch.common.util.concurrent.BaseFuture$Sync.get(BaseFuture.java:253) > at org.elasticsearch.common.util.concurrent.BaseFuture.get(BaseFuture.java:87) > at org.elasticsearch.xpack.ml.support.BaseMlIntegTestCase.deleteAllDatafeeds(BaseMlIntegTestCase.java:284) > ... 36 more > Caused by: ElasticsearchStatusException[Cannot stop datafeed [data_feed_id] because the datafeed does not have an assigned node. Use force stop to stop the datafeed] > at org.elasticsearch.xpack.core.ml.utils.ExceptionsHelper.conflictStatusException(ExceptionsHelper.java:50) > at org.elasticsearch.xpack.ml.action.TransportStopDatafeedAction.normalStopDatafeed(TransportStopDatafeedAction.java:147) > at org.elasticsearch.xpack.ml.action.TransportStopDatafeedAction.lambda$doExecute$0(TransportStopDatafeedAction.java:130) > at org.elasticsearch.action.ActionListener$1.onResponse(ActionListener.java:60) > at org.elasticsearch.xpack.ml.datafeed.persistence.DatafeedConfigProvider.lambd ```
1.0
[CI][ML] MlDistributedFailureIT.testLoseDedicatedMasterNode randomly fails on feature-jindex-master branch - This test has been observed to fail occasionally in the `feature-jindex-master` branch. I have not yet managed to reproduce locally. I will shortly be muting the test as we need a green build to merge the branch in master. However, I am raising the issue to ensure we get to the bottom of this failure. Link to failure (one of them): https://elasticsearch-ci.elastic.co/job/elastic+elasticsearch+pull-request-2/2556/console Reproduce with: ``` ./gradlew :x-pack:plugin:ml:internalClusterTest -Dtests.seed=D2A618A38265651F -Dtests.class=org.elasticsearch.xpack.ml.integration.MlDistributedFailureIT -Dtests.method="testLoseDedicatedMasterNode" -Dtests.security.manager=true -Dtests.locale=be-BY -Dtests.timezone=Asia/Katmandu -Dcompiler.java=11 -Druntime.java=8 ``` Failure: ``` > Throwable #1: java.lang.AssertionError > at org.elasticsearch.xpack.ml.integration.MlDistributedFailureIT.lambda$run$15(MlDistributedFailureIT.java:298) > at org.elasticsearch.test.ESTestCase.assertBusy(ESTestCase.java:847) > at org.elasticsearch.test.ESTestCase.assertBusy(ESTestCase.java:821) > at org.elasticsearch.xpack.ml.integration.MlDistributedFailureIT.run(MlDistributedFailureIT.java:292) > at org.elasticsearch.xpack.ml.integration.MlDistributedFailureIT.testLoseDedicatedMasterNode(MlDistributedFailureIT.java:88) > at java.lang.Thread.run(Thread.java:748) > Suppressed: java.lang.AssertionError > at org.elasticsearch.xpack.ml.integration.MlDistributedFailureIT.lambda$run$15(MlDistributedFailureIT.java:298) > at org.elasticsearch.test.ESTestCase.assertBusy(ESTestCase.java:835) > ... 40 more > Suppressed: java.lang.AssertionError > at org.elasticsearch.xpack.ml.integration.MlDistributedFailureIT.lambda$run$15(MlDistributedFailureIT.java:298) > at org.elasticsearch.test.ESTestCase.assertBusy(ESTestCase.java:835) > ... 40 more > Suppressed: java.lang.AssertionError > at org.elasticsearch.xpack.ml.integration.MlDistributedFailureIT.lambda$run$15(MlDistributedFailureIT.java:298) > at org.elasticsearch.test.ESTestCase.assertBusy(ESTestCase.java:835) > ... 40 more > Suppressed: java.lang.AssertionError > at org.elasticsearch.xpack.ml.integration.MlDistributedFailureIT.lambda$run$15(MlDistributedFailureIT.java:298) > at org.elasticsearch.test.ESTestCase.assertBusy(ESTestCase.java:835) > ... 40 more > Suppressed: java.lang.AssertionError > at org.elasticsearch.xpack.ml.integration.MlDistributedFailureIT.lambda$run$15(MlDistributedFailureIT.java:298) > at org.elasticsearch.test.ESTestCase.assertBusy(ESTestCase.java:835) > ... 40 more > Suppressed: java.lang.AssertionError > at org.elasticsearch.xpack.ml.integration.MlDistributedFailureIT.lambda$run$15(MlDistributedFailureIT.java:298) > at org.elasticsearch.test.ESTestCase.assertBusy(ESTestCase.java:835) > ... 40 more > Suppressed: java.lang.AssertionError > at org.elasticsearch.xpack.ml.integration.MlDistributedFailureIT.lambda$run$15(MlDistributedFailureIT.java:298) > at org.elasticsearch.test.ESTestCase.assertBusy(ESTestCase.java:835) > ... 40 more > Suppressed: java.lang.AssertionError > at org.elasticsearch.xpack.ml.integration.MlDistributedFailureIT.lambda$run$15(MlDistributedFailureIT.java:298) > at org.elasticsearch.test.ESTestCase.assertBusy(ESTestCase.java:835) > ... 40 more > Suppressed: java.lang.AssertionError > at org.elasticsearch.xpack.ml.integration.MlDistributedFailureIT.lambda$run$15(MlDistributedFailureIT.java:298) > at org.elasticsearch.test.ESTestCase.assertBusy(ESTestCase.java:835) > ... 40 more > Suppressed: java.lang.AssertionError > at org.elasticsearch.xpack.ml.integration.MlDistributedFailureIT.lambda$run$15(MlDistributedFailureIT.java:298) > at org.elasticsearch.test.ESTestCase.assertBusy(ESTestCase.java:835) > ... 40 more > Suppressed: java.lang.AssertionError > at org.elasticsearch.xpack.ml.integration.MlDistributedFailureIT.lambda$run$15(MlDistributedFailureIT.java:298) > at org.elasticsearch.test.ESTestCase.assertBusy(ESTestCase.java:835) > ... 40 more > Suppressed: java.lang.AssertionError > at org.elasticsearch.xpack.ml.integration.MlDistributedFailureIT.lambda$run$15(MlDistributedFailureIT.java:298) > at org.elasticsearch.test.ESTestCase.assertBusy(ESTestCase.java:835) > ... 40 more > Suppressed: java.lang.AssertionError > at org.elasticsearch.xpack.ml.integration.MlDistributedFailureIT.lambda$run$15(MlDistributedFailureIT.java:298) > at org.elasticsearch.test.ESTestCase.assertBusy(ESTestCase.java:835) > ... 40 moreThrowable #2: java.lang.RuntimeException: Had to resort to force-stopping datafeed, something went wrong? > at org.elasticsearch.xpack.ml.support.BaseMlIntegTestCase.deleteAllDatafeeds(BaseMlIntegTestCase.java:296) > at org.elasticsearch.xpack.ml.support.BaseMlIntegTestCase.cleanupWorkaround(BaseMlIntegTestCase.java:209) > at java.lang.Thread.run(Thread.java:748) > Caused by: java.util.concurrent.ExecutionException: ElasticsearchStatusException[Cannot stop datafeed [data_feed_id] because the datafeed does not have an assigned node. Use force stop to stop the datafeed] > at org.elasticsearch.common.util.concurrent.BaseFuture$Sync.getValue(BaseFuture.java:266) > at org.elasticsearch.common.util.concurrent.BaseFuture$Sync.get(BaseFuture.java:253) > at org.elasticsearch.common.util.concurrent.BaseFuture.get(BaseFuture.java:87) > at org.elasticsearch.xpack.ml.support.BaseMlIntegTestCase.deleteAllDatafeeds(BaseMlIntegTestCase.java:284) > ... 36 more > Caused by: ElasticsearchStatusException[Cannot stop datafeed [data_feed_id] because the datafeed does not have an assigned node. Use force stop to stop the datafeed] > at org.elasticsearch.xpack.core.ml.utils.ExceptionsHelper.conflictStatusException(ExceptionsHelper.java:50) > at org.elasticsearch.xpack.ml.action.TransportStopDatafeedAction.normalStopDatafeed(TransportStopDatafeedAction.java:147) > at org.elasticsearch.xpack.ml.action.TransportStopDatafeedAction.lambda$doExecute$0(TransportStopDatafeedAction.java:130) > at org.elasticsearch.action.ActionListener$1.onResponse(ActionListener.java:60) > at org.elasticsearch.xpack.ml.datafeed.persistence.DatafeedConfigProvider.lambd ```
test
mldistributedfailureit testlosededicatedmasternode randomly fails on feature jindex master branch this test has been observed to fail occasionally in the feature jindex master branch i have not yet managed to reproduce locally i will shortly be muting the test as we need a green build to merge the branch in master however i am raising the issue to ensure we get to the bottom of this failure link to failure one of them reproduce with gradlew x pack plugin ml internalclustertest dtests seed dtests class org elasticsearch xpack ml integration mldistributedfailureit dtests method testlosededicatedmasternode dtests security manager true dtests locale be by dtests timezone asia katmandu dcompiler java druntime java failure throwable java lang assertionerror at org elasticsearch xpack ml integration mldistributedfailureit lambda run mldistributedfailureit java at org elasticsearch test estestcase assertbusy estestcase java at org elasticsearch test estestcase assertbusy estestcase java at org elasticsearch xpack ml integration mldistributedfailureit run mldistributedfailureit java at org elasticsearch xpack ml integration mldistributedfailureit testlosededicatedmasternode mldistributedfailureit java at java lang thread run thread java suppressed java lang assertionerror at org elasticsearch xpack ml integration mldistributedfailureit lambda run mldistributedfailureit java at org elasticsearch test estestcase assertbusy estestcase java more suppressed java lang assertionerror at org elasticsearch xpack ml integration mldistributedfailureit lambda run mldistributedfailureit java at org elasticsearch test estestcase assertbusy estestcase java more suppressed java lang assertionerror at org elasticsearch xpack ml integration mldistributedfailureit lambda run mldistributedfailureit java at org elasticsearch test estestcase assertbusy estestcase java more suppressed java lang assertionerror at org elasticsearch xpack ml integration mldistributedfailureit lambda run mldistributedfailureit java at org elasticsearch test estestcase assertbusy estestcase java more suppressed java lang assertionerror at org elasticsearch xpack ml integration mldistributedfailureit lambda run mldistributedfailureit java at org elasticsearch test estestcase assertbusy estestcase java more suppressed java lang assertionerror at org elasticsearch xpack ml integration mldistributedfailureit lambda run mldistributedfailureit java at org elasticsearch test estestcase assertbusy estestcase java more suppressed java lang assertionerror at org elasticsearch xpack ml integration mldistributedfailureit lambda run mldistributedfailureit java at org elasticsearch test estestcase assertbusy estestcase java more suppressed java lang assertionerror at org elasticsearch xpack ml integration mldistributedfailureit lambda run mldistributedfailureit java at org elasticsearch test estestcase assertbusy estestcase java more suppressed java lang assertionerror at org elasticsearch xpack ml integration mldistributedfailureit lambda run mldistributedfailureit java at org elasticsearch test estestcase assertbusy estestcase java more suppressed java lang assertionerror at org elasticsearch xpack ml integration mldistributedfailureit lambda run mldistributedfailureit java at org elasticsearch test estestcase assertbusy estestcase java more suppressed java lang assertionerror at org elasticsearch xpack ml integration mldistributedfailureit lambda run mldistributedfailureit java at org elasticsearch test estestcase assertbusy estestcase java more suppressed java lang assertionerror at org elasticsearch xpack ml integration mldistributedfailureit lambda run mldistributedfailureit java at org elasticsearch test estestcase assertbusy estestcase java more suppressed java lang assertionerror at org elasticsearch xpack ml integration mldistributedfailureit lambda run mldistributedfailureit java at org elasticsearch test estestcase assertbusy estestcase java morethrowable java lang runtimeexception had to resort to force stopping datafeed something went wrong at org elasticsearch xpack ml support basemlintegtestcase deletealldatafeeds basemlintegtestcase java at org elasticsearch xpack ml support basemlintegtestcase cleanupworkaround basemlintegtestcase java at java lang thread run thread java caused by java util concurrent executionexception elasticsearchstatusexception because the datafeed does not have an assigned node use force stop to stop the datafeed at org elasticsearch common util concurrent basefuture sync getvalue basefuture java at org elasticsearch common util concurrent basefuture sync get basefuture java at org elasticsearch common util concurrent basefuture get basefuture java at org elasticsearch xpack ml support basemlintegtestcase deletealldatafeeds basemlintegtestcase java more caused by elasticsearchstatusexception because the datafeed does not have an assigned node use force stop to stop the datafeed at org elasticsearch xpack core ml utils exceptionshelper conflictstatusexception exceptionshelper java at org elasticsearch xpack ml action transportstopdatafeedaction normalstopdatafeed transportstopdatafeedaction java at org elasticsearch xpack ml action transportstopdatafeedaction lambda doexecute transportstopdatafeedaction java at org elasticsearch action actionlistener onresponse actionlistener java at org elasticsearch xpack ml datafeed persistence datafeedconfigprovider lambd
1