Commit Graph

12140 Commits

Author SHA1 Message Date
Michael Vines
e2e569cb43 Set rsync url for local deployments 2018-09-05 09:02:02 -07:00
Michael Vines
8c51b47e85 Preserve existing ssh config 2018-09-05 09:02:02 -07:00
Michael Vines
017eb10e76 Add file header doc 2018-09-05 09:02:02 -07:00
Michael Vines
f50aeb0e58 Always add perf-libs to LD_LIBRARY_PATH 2018-09-05 09:02:02 -07:00
Michael Vines
48c19d3100 Enable cargo features to be specified 2018-09-05 09:02:02 -07:00
Michael Vines
aaf0a23134 Add Tips section 2018-09-05 09:02:02 -07:00
Michael Vines
89db85dbf9 Work around concurrent |gcloud compute ssh| terminal issue 2018-09-05 09:02:02 -07:00
Michael Vines
e677cda027 Private IP networks now work, and are the default 2018-09-05 09:02:02 -07:00
Michael Vines
db9219ccc8 Improve error monitoring 2018-09-05 09:02:02 -07:00
Michael Vines
06fd945f85 Set node config correctly 2018-09-05 09:02:02 -07:00
Michael Vines
6ad4a81123 s/_/-/g in filenames 2018-09-05 09:02:02 -07:00
Michael Vines
bcaa0fdcb1 net/ can now deploy Snaps 2018-09-05 09:02:02 -07:00
Michael Vines
2cb1375217 Run gcloud_PrepInstancesForSsh in parallel 2018-09-05 09:02:02 -07:00
Michael Vines
9365a47d42 Employ a startup script 2018-09-05 09:02:02 -07:00
Michael Vines
6ffe205447 Add -g option 2018-09-05 09:02:02 -07:00
Michael Vines
ec3e62dd58 Add net/ sanity 2018-09-05 09:02:02 -07:00
Michael Vines
fa07c49cc9 net/ can now deploy Snaps 2018-09-05 09:02:02 -07:00
Michael Vines
449d7042f0 Configure metrics correctly 2018-09-05 09:02:02 -07:00
Michael Vines
7e2b65374d gce instance types are now configurable 2018-09-05 09:02:02 -07:00
Michael Vines
8e39465700 Drop .sh extension to hide from shellcheck 2018-09-05 09:02:02 -07:00
Michael Vines
43b4207101 Run oom-monitor in net/ testnets 2018-09-05 09:02:02 -07:00
Michael Vines
ff991b87da Add support for deploying from non-Linux machines 2018-09-05 09:02:02 -07:00
Michael Vines
c81c19234f Improve incremental speed of docker cargo builds outside of CI 2018-09-05 09:02:02 -07:00
Michael Vines
399caf343c Morph gce_multinode-based scripts into net/ 2018-09-05 09:02:02 -07:00
sakridge
ffb72136c8 Remove account from balances table after error seen (#1120)
If balance goes to 0, then bank removes the account
from it's account table and returns no account error. Thin client
should also update the account to this state or it will
still have the cached balance from the last successful get_balance().
2018-09-04 21:33:19 -07:00
jackcmay
1a615bde2b Update README.md (#1117)
* Update README.md

* Fix spelling

* Improved punctuation
2018-09-04 20:41:11 -07:00
Greg Fitzgerald
cf2626a1c5 Update instructions to upgrade nightly docker image 2018-09-04 20:56:40 -06:00
Greg Fitzgerald
68c72d6f34 Fix nightly build 2018-09-04 20:56:40 -06:00
Greg Fitzgerald
65f78905cd Install cargo-cov on latest nightly 2018-09-04 20:56:40 -06:00
Pankaj Garg
70a8ae4612 Fixed private IP variable in gcloud script (#1119) 2018-09-04 16:24:19 -07:00
sakridge
d82ec2634c Fix is_leader boolean (#1115)
A node is the leader if the address is none
2018-09-04 13:38:24 -07:00
Michael Vines
b4a7a18334 Update README.md 2018-09-04 13:29:00 -07:00
Rob Walker
c44c5f0b09 take into account size of an Entry (#1116) 2018-09-05 05:07:58 +09:00
Rob Walker
226d3b9471 Trace recycle() calls (#968)
* trace recycle() calls fixes #810
2018-09-05 05:07:02 +09:00
Stephen Akridge
2752bde683 Print to indicate what drone is doing while waiting for gossip 2018-09-04 13:45:08 -06:00
Greg Fitzgerald
b8816d722c Fix Block::to_blobs() benchmark
16% speedup, w00t!

name                                control  ns/iter  variable  ns/iter  diff ns/iter   diff %  speedup
bench_block_to_blobs_to_block       29,897            25,807                   -4,090  -13.68%   x 1.16
2018-09-04 07:50:23 -10:00
Greg Fitzgerald
2aa72cc72e Return a Vec from to_blobs() instead of using a mut parameter 2018-09-04 07:50:23 -10:00
Greg Fitzgerald
8cc030ef84 Use Vec instead of VecDeque for SharedBlobs 2018-09-04 07:50:23 -10:00
Stephen Akridge
9a9f89293a Better error handling messages for airdrops 2018-09-04 06:46:43 -10:00
anatoly yakovenko
501deeef56 accounts should never be negative (#1083) 2018-09-04 06:43:18 -10:00
Greg Fitzgerald
05f921d544 Don't call println in the test suite 2018-09-04 06:01:32 -10:00
Greg Fitzgerald
ab7a2960b1 Don't use product name in solana library 2018-09-04 06:01:32 -10:00
Greg Fitzgerald
4e2deaa33b Less mut 2018-09-04 06:01:32 -10:00
Greg Fitzgerald
d5ef18337c Remove redundant return value
And don't log the same error twice.
2018-09-04 06:01:32 -10:00
Greg Fitzgerald
d18ea501b7 Minimize unsafe code 2018-09-04 06:01:32 -10:00
Greg Fitzgerald
c9a1ac9b8c Don't propogate errors we'll never handle 2018-09-04 06:01:32 -10:00
Greg Fitzgerald
c2a4cb544e Borrow, don't clone entries 2018-09-04 06:01:32 -10:00
Greg Fitzgerald
3ab12076e8 Convert voting functions to methods
More idiomatic Rust.
2018-09-04 05:53:58 -10:00
Tyera Eulberg
6a383c45fc Update sendTransaction example to reflect new array size 2018-09-04 05:44:10 -10:00
Tyera Eulberg
7cc27e7bd1 Doc requestAirdrop rpc method 2018-09-04 05:44:10 -10:00