diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2018-05-15 20:53:56 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2018-05-15 20:53:58 -0700 |
commit | 9036469324912eae3eed8cb8645f91f1a68c5857 (patch) | |
tree | fc67a9b379b85f5019fad167eba759c6039d8ea3 /rust/src/bin | |
parent | cdb87fd0880664d20ee40ce367fe6a2f3559ed7c (diff) | |
download | fatcat-9036469324912eae3eed8cb8645f91f1a68c5857.tar.gz fatcat-9036469324912eae3eed8cb8645f91f1a68c5857.zip |
progress on inserts
Using a huge sql_query() to do raw multi-table inserts for now.
Diffstat (limited to 'rust/src/bin')
-rw-r--r-- | rust/src/bin/fatcat-iron.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rust/src/bin/fatcat-iron.rs b/rust/src/bin/fatcat-iron.rs index 6e8c3765..05a8e1a5 100644 --- a/rust/src/bin/fatcat-iron.rs +++ b/rust/src/bin/fatcat-iron.rs @@ -59,7 +59,7 @@ fn main() { } else { // Using HTTP Iron::new(chain) - .http("localhost:8080") + .http("localhost:9411") .expect("Failed to start HTTP server"); } } |