Skip to content

Commit

Permalink
fix ports
Browse files Browse the repository at this point in the history
  • Loading branch information
ezekg committed Oct 3, 2024
1 parent be19655 commit 67dcaba
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion testdata/claim_conflict.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
exec relay add --file license.lic --key 9E32DD-D8CC22-771926-C2D834-C506DC-V3 --public-key e8601e48b69383ba520245fd07971e983d06d22c4257cfd82304601479cee788

# Set a port as environment variable
env PORT=8082
env PORT=65841

# Start the server with heartbeat disabled
exec relay serve --port $PORT --no-heartbeats &server_process_test&
Expand Down
2 changes: 1 addition & 1 deletion testdata/claim_license_conflict.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
exec relay add --file license.lic --key 9E32DD-D8CC22-771926-C2D834-C506DC-V3 --public-key e8601e48b69383ba520245fd07971e983d06d22c4257cfd82304601479cee788

# Set a port as environment variable
env PORT=8083
env PORT=65831

# Start the server with heartbeat disabled
exec relay serve --port $PORT --no-heartbeats &server_process_test&
Expand Down
2 changes: 1 addition & 1 deletion testdata/claim_license_extended.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
exec relay add --file license.lic --key 9E32DD-D8CC22-771926-C2D834-C506DC-V3 --public-key e8601e48b69383ba520245fd07971e983d06d22c4257cfd82304601479cee788

# Set a port as environment variable
env PORT=8087
env PORT=65840

# Start the server with heartbeat enabled (for extension to work)
exec relay serve --port $PORT &server_process_test&
Expand Down
2 changes: 1 addition & 1 deletion testdata/claim_license_lifo_strategy.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ exec sleep 1
exec relay add --file license_2.lic --key 9A96B8-FD08CD-8C433B-7657C8-8A8655-V3 --public-key e8601e48b69383ba520245fd07971e983d06d22c4257cfd82304601479cee788

# Set a port and strategy as environment variables
env PORT=8089
env PORT=65822
env STRATEGY=lifo

# Start the server with FIFO strategy
Expand Down
2 changes: 1 addition & 1 deletion testdata/claim_no_licenses_available.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Start the server without adding any licenses
env PORT=8084
env PORT=65842
exec relay serve --port $PORT &server_process_test&

# Wait for the server to start
Expand Down
2 changes: 1 addition & 1 deletion testdata/cmd_serve.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
exec relay add --file license.lic --key 9E32DD-D8CC22-771926-C2D834-C506DC-V3 --public-key e8601e48b69383ba520245fd07971e983d06d22c4257cfd82304601479cee788

# Set a port as environment variable
env PORT=8081
env PORT=65812

# Start the server in the background with the environment variable
exec relay serve --port $PORT &server_process&
Expand Down
2 changes: 1 addition & 1 deletion testdata/release_license_not_found.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Start the server
env PORT=8086
env PORT=65253
exec relay serve --port $PORT &server_process_test&

# Wait for the server to start
Expand Down
2 changes: 1 addition & 1 deletion testdata/release_license_success.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
exec relay add --file license.lic --key 9E32DD-D8CC22-771926-C2D834-C506DC-V3 --public-key e8601e48b69383ba520245fd07971e983d06d22c4257cfd82304601479cee788

# Set a port as environment variable
env PORT=8085
env PORT=65111

# Start the server with heartbeat disabled
exec relay serve --port $PORT &server_process_test&
Expand Down
2 changes: 1 addition & 1 deletion testdata/server_database.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ exec relay add --file license.lic --key 9E32DD-D8CC22-771926-C2D834-C506DC-V3 --
exec test -f $DATABASE_PATH

# Set a port as environment variable
env PORT=8091
env PORT=65848

# Start the server with custom database path
exec relay serve --port $PORT --database $DATABASE_PATH &server_process_test&
Expand Down

0 comments on commit 67dcaba

Please sign in to comment.