-
Notifications
You must be signed in to change notification settings - Fork 180
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: make this work with kurtosis 0.65.0 (#73)
Can be merged after `service-name` gets merged. Co-authored-by: Gyanendra Mishra <[email protected]>
- Loading branch information
Showing
24 changed files
with
132 additions
and
148 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
def new_cl_client_context(client_name, enr, ip_addr, http_port_num, cl_nodes_metrics_info, beacon_service_id): | ||
def new_cl_client_context(client_name, enr, ip_addr, http_port_num, cl_nodes_metrics_info, beacon_service_name): | ||
return struct( | ||
client_name = client_name, | ||
enr = enr, | ||
ip_addr = ip_addr, | ||
http_port_num = http_port_num, | ||
cl_nodes_metrics_info = cl_nodes_metrics_info, | ||
beacon_service_id = beacon_service_id | ||
beacon_service_name = beacon_service_name | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,7 @@ | ||
def wait_for_healthy(plan, service_id, port_id): | ||
recipe = struct( | ||
service_id = service_id, | ||
method= "GET", | ||
def wait_for_healthy(plan, service_name, port_id): | ||
recipe = GetHttpRequestRecipe( | ||
service_name = service_name, | ||
endpoint = "/eth/v1/node/health", | ||
content_type = "application/json", | ||
port_id = port_id | ||
) | ||
return plan.wait(recipe, "code", "IN", [200, 206, 503]) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.