| 145 | } |
| 146 | pending, _ := result["pending_task_ids"].([]string) |
| 147 | if len(pending) != 1 || pending[0] != record.TaskID { |
| 148 | t.Fatalf("expected pending task to be reported, got %#v", result) |
| 149 | } |
| 150 | if _, ok := result["error"]; ok { |
| 151 | t.Fatalf("soft timeout should not be a hard error, got %#v", result) |
| 152 | } |
nothing calls this directly
no outgoing calls
no test coverage detected