You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
45667: ui: Refactor redux connect for enqueue ranges r=nathanstilwell a=nathanstilwell
Moving `handleEnqueueRange` from Redux connect to a method in the component as the data seems useless in the state and doesn't dispatch an action.
It seems like the GPRC promise wasn't getting handled by either the [Thunk](https://github.com/reduxjs/redux-thunk) or [Saga](https://github.com/redux-saga/redux-saga) middleware and was confusing Redux as with a [Promise](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise) instead of [an action](https://redux.js.org/basics/actions/).
I'm also increasing the request timeout time on the GPRC request to an hour to ensure completion of tasks.
fixes#44948, #42888
45726: roachtest: use more memory for django roachtest r=rafiss a=rafiss
It is currently running into OOM issues. This should fix it until we can
reduce memory usage.
Also, fix the repo name when getting the latest django-cockroachdb
release.
Release note: None
45737: execgen: try not to touch .eg.go files r=jordanlewis a=jordanlewis
This changes the Makefile to output .eg.go output to a tmp file before
actually editing .eg.go files, to prevent build churn.
Release note: None
45738: roachpb: make the ignored seq num list copy on write r=andreimatei a=andreimatei
Unfortunately the RaceTransport doesn't allow any data referenced by a
Transaction proto to be mutated. This patch makes updates to the ignored
seq nums conform.
The RaceTransport wants to prevent the server from doing such mutations.
In this case it's the client that does the mutations, which should be
allowed, but the implementation of this testing tool casts a wide net.
Release note: None
45752: sql: add a notice to primary key changes about async jobs r=otan a=rohany
Fixes#45730.
Release note: None
Co-authored-by: Nathan Stilwell <nathanstilwell@cockroachlabs.com>
Co-authored-by: Rafi Shamim <rafi@cockroachlabs.com>
Co-authored-by: Jordan Lewis <jordanthelewis@gmail.com>
Co-authored-by: Andrei Matei <andrei@cockroachlabs.com>
Co-authored-by: Rohan Yadav <rohany@alumni.cmu.edu>
Mentioned in #45150
The text was updated successfully, but these errors were encountered: