Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ry committed Sep 20, 2019
1 parent 827cca5 commit ef61bdc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 10 deletions.
2 changes: 1 addition & 1 deletion js/deps/https/deno.land/std
Submodule std updated from 6663e6 to 89c57a
10 changes: 1 addition & 9 deletions tools/http_benchmark.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,13 +49,7 @@ def deno_http(deno_exe):
"js/deps/https/deno.land/std/http/http_bench.ts", addr
]
print "http_benchmark testing DENO using net/http."
return run(
deno_cmd,
addr,
merge_env={
# Load from //js/deps/https/deno.land/net/ submodule.
"DENO_DIR": os.path.join(util.root_path, "js")
})
return run(deno_cmd, addr)


def deno_tcp_proxy(deno_exe, hyper_hello_exe):
Expand All @@ -69,7 +63,6 @@ def deno_tcp_proxy(deno_exe, hyper_hello_exe):
return run(
deno_cmd,
addr,
merge_env={"DENO_DIR": os.path.join(util.root_path, "js")},
origin_cmd=http_proxy_origin(hyper_hello_exe, origin_addr))


Expand All @@ -84,7 +77,6 @@ def deno_http_proxy(deno_exe, hyper_hello_exe):
return run(
deno_cmd,
addr,
merge_env={"DENO_DIR": os.path.join(util.root_path, "js")},
origin_cmd=http_proxy_origin(hyper_hello_exe, origin_addr))


Expand Down

0 comments on commit ef61bdc

Please sign in to comment.