Skip to content

Commit

Permalink
fix: disable hints
Browse files Browse the repository at this point in the history
Signed-off-by: Vladislav Sukhin <[email protected]>
  • Loading branch information
vsukhin committed Nov 25, 2024
1 parent c71f5c8 commit 3e70a83
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions internal/app/api/v1/testworkflowexecutions.go
Original file line number Diff line number Diff line change
Expand Up @@ -107,9 +107,9 @@ func (s *TestkubeAPI) StreamTestWorkflowExecutionServiceNotificationsHandler() f
id := fmt.Sprintf("%s-%s-%s", execution.Id, serviceName, serviceIndex)
notifications := s.ExecutionWorkerClient.Notifications(ctx, id, executionworkertypes.NotificationsOptions{
Hints: executionworkertypes.Hints{
Namespace: execution.Namespace,
ScheduledAt: common.Ptr(execution.ScheduledAt),
Signature: execution.Signature,
Namespace: execution.Namespace,
// ScheduledAt: common.Ptr(execution.ScheduledAt),
// Signature: execution.Signature,
},
})
if notifications.Err() != nil {
Expand Down Expand Up @@ -183,9 +183,9 @@ func (s *TestkubeAPI) StreamTestWorkflowExecutionServiceNotificationsWebSocketHa
id := fmt.Sprintf("%s-%s-%s", execution.Id, serviceName, serviceIndex)
notifications := s.ExecutionWorkerClient.Notifications(ctx, id, executionworkertypes.NotificationsOptions{
Hints: executionworkertypes.Hints{
Namespace: execution.Namespace,
Signature: execution.Signature,
ScheduledAt: common.Ptr(execution.ScheduledAt),
Namespace: execution.Namespace,
// Signature: execution.Signature,
// ScheduledAt: common.Ptr(execution.ScheduledAt),
},
})
if notifications.Err() != nil {
Expand Down

0 comments on commit 3e70a83

Please sign in to comment.