forked from cockroachdb/cockroach
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
…db#45738 cockroachdb#45752 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 cockroachdb#44948, cockroachdb#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 cockroachdb#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>
- Loading branch information
Showing
15 changed files
with
206 additions
and
203 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.