Use port 9090 for restbuck server

mainly to avoid using 80 or 8080 which are often already used (by current webserver, or even skype, or jenkins, or ...)
This commit is contained in:
Jocelyn Fiat
2011-12-14 16:34:01 +01:00
parent ab5b43d8ef
commit b6784ee35c
2 changed files with 2 additions and 2 deletions

View File

@@ -22,7 +22,7 @@ feature {NONE} -- Initialization
body : STRING
do
create h.make
sess := h.new_session ("http://127.0.0.1:8080")
sess := h.new_session ("http://127.0.0.1:9090")
-- Create Order
print ("%N Create Order %N")
resp := create_order (sess)

View File

@@ -24,7 +24,7 @@ feature {NONE} -- Initialization
s: DEFAULT_SERVICE_LAUNCHER
do
initialize_router
create s.make_and_launch (agent execute)
create s.make_and_launch_with_options (agent execute, <<["port", 9090]>>)
end
create_router