Skip to content

Commit ecd679b

Browse files
committed
fix output
1 parent f1a4f46 commit ecd679b

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

maintnotifications/e2e/fault_injector_test.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -124,6 +124,7 @@ func (c *FaultInjectorClient) ListActions(ctx context.Context) ([]ActionType, er
124124
// TriggerAction triggers a specific action
125125
func (c *FaultInjectorClient) TriggerAction(ctx context.Context, action ActionRequest) (*ActionResponse, error) {
126126
var response ActionResponse
127+
fmt.Printf("[FI] Triggering action: %+v\n", action)
127128
err := c.request(ctx, "POST", "/action", action, &response)
128129
return &response, err
129130
}

maintnotifications/e2e/scenario_endpoint_types_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ func TestEndpointTypesPushNotifications(t *testing.T) {
157157
}()
158158

159159
// Test failover with this endpoint type
160-
p("Testing failover with %s endpoint type on database %s[bdb_id:%s]...", endpointTest.name, endpointConfig.Name, endpointConfig.BdbID)
160+
p("Testing failover with %s endpoint type on database [bdb_id:%s]...", endpointTest.name, endpointConfig.BdbID)
161161
failoverResp, err := faultInjector.TriggerAction(ctx, ActionRequest{
162162
Type: "failover",
163163
Parameters: map[string]interface{}{

0 commit comments

Comments
 (0)