Handle pipeline.discover event. */
| 91 | |
| 92 | /* Handle pipeline.discover event. */ |
| 93 | static void on_discover(const char *line) { |
| 94 | char files[CBM_SZ_32] = {0}; |
| 95 | if (extract_kv(line, "files", files, (int)sizeof(files))) { |
| 96 | (void)fprintf(s_out, " Discovering files (%s found)\n", files); |
| 97 | } else { |
| 98 | (void)fprintf(s_out, " Discovering files...\n"); |
| 99 | } |
| 100 | (void)fflush(s_out); |
| 101 | } |
| 102 | |
| 103 | /* Handle pipeline.route event. */ |
| 104 | static void on_route(const char *line) { |
nothing calls this directly
no test coverage detected