(blockId string)
| 1391 | } |
| 1392 | |
| 1393 | func IsBlockIdTermDurable(blockId string) bool { |
| 1394 | block, err := wstore.DBGet[*waveobj.Block](context.Background(), blockId) |
| 1395 | if err != nil || block == nil { |
| 1396 | return false |
| 1397 | } |
| 1398 | return IsBlockTermDurable(block) |
| 1399 | } |
| 1400 | |
| 1401 | func DeleteJob(ctx context.Context, jobId string) error { |
| 1402 | SetJobConnStatus(jobId, JobConnStatus_Disconnected) |
no test coverage detected