xk6 improvements #6

Merged
abereziny merged 1 commits from feature-abereziny-xk6-improvements into master 2022-12-30 14:30:51 +00:00
abereziny commented 2022-12-30 08:13:21 +00:00 (Migrated from github.com)
  • sys.exit with exit codes if no containers/objects during preset
  • correct statistics - total counts of request contains only successful requests.
  • add endpoint to grpc connection error message
  • added ability to change workers count during preset
* sys.exit with exit codes if no containers/objects during preset * correct statistics - total counts of request contains only successful requests. * add endpoint to grpc connection error message * added ability to change workers count during preset
anatoly-bogatyrev (Migrated from github.com) reviewed 2022-12-30 08:13:21 +00:00
alexvanin (Migrated from github.com) reviewed 2022-12-30 08:13:21 +00:00
anikeev-yadro (Migrated from github.com) reviewed 2022-12-30 08:13:21 +00:00
anikeev-yadro (Migrated from github.com) reviewed 2022-12-30 09:47:00 +00:00
vdomnich-yadro (Migrated from github.com) reviewed 2022-12-30 12:46:04 +00:00
realloc (Migrated from github.com) approved these changes 2022-12-30 14:30:18 +00:00
vdomnich-yadro (Migrated from github.com) reviewed 2023-01-08 08:21:22 +00:00
@ -81,3 +81,3 @@
if err != nil {
return nil, fmt.Errorf("dial endpoint: %w", err)
return nil, fmt.Errorf("dial endpoint: %w %w", endpoint, err)
}
vdomnich-yadro (Migrated from github.com) commented 2023-01-08 08:21:22 +00:00

This line should have been: return nil, fmt.Errorf("dial endpoint: %v %w", endpoint, err)
(%v %w instead of %w %w).

This line should have been: `return nil, fmt.Errorf("dial endpoint: %v %w", endpoint, err)` (`%v %w` instead of `%w %w`).
abereziny (Migrated from github.com) reviewed 2023-01-11 16:45:40 +00:00
@ -81,3 +81,3 @@
if err != nil {
return nil, fmt.Errorf("dial endpoint: %w", err)
return nil, fmt.Errorf("dial endpoint: %w %w", endpoint, err)
}
abereziny (Migrated from github.com) commented 2023-01-11 16:45:40 +00:00
https://github.com/TrueCloudLab/xk6-frostfs/pull/7
Sign in to join this conversation.
There is no content yet.