diff options
| author | 2025-05-28 09:16:23 +0200 | |
|---|---|---|
| committer | 2025-05-28 09:16:23 +0200 | |
| commit | 0594197af7a4a11795150a85fafa7fa5bc6fc4f5 (patch) | |
| tree | 3fe46c6d4f9ccf975da0cc7b6f7422caddd6c1b9 /httpd.c | |
| parent | Updated documentation. (diff) | |
| download | penes-snac2-0594197af7a4a11795150a85fafa7fa5bc6fc4f5.tar.gz penes-snac2-0594197af7a4a11795150a85fafa7fa5bc6fc4f5.tar.xz penes-snac2-0594197af7a4a11795150a85fafa7fa5bc6fc4f5.zip | |
Renamed server knob to 'rss_hashtag_poll_hours'.
Diffstat (limited to 'httpd.c')
| -rw-r--r-- | httpd.c | 4 |
1 files changed, 2 insertions, 2 deletions
| @@ -757,7 +757,7 @@ static void *background_thread(void *arg) | |||
| 757 | /* time to poll the RSS? */ | 757 | /* time to poll the RSS? */ |
| 758 | if (t > rss_time) { | 758 | if (t > rss_time) { |
| 759 | /* next RSS poll time */ | 759 | /* next RSS poll time */ |
| 760 | int hours = xs_number_get(xs_dict_get_def(srv_config, "rss_poll_hours", "4")); | 760 | int hours = xs_number_get(xs_dict_get_def(srv_config, "rss_hashtag_poll_hours", "4")); |
| 761 | 761 | ||
| 762 | /* don't hammer servers too much */ | 762 | /* don't hammer servers too much */ |
| 763 | if (hours < 1) | 763 | if (hours < 1) |
| @@ -766,7 +766,7 @@ static void *background_thread(void *arg) | |||
| 766 | rss_time = t + 60 * 60 * hours; | 766 | rss_time = t + 60 * 60 * hours; |
| 767 | 767 | ||
| 768 | xs *q_item = xs_dict_new(); | 768 | xs *q_item = xs_dict_new(); |
| 769 | q_item = xs_dict_append(q_item, "type", "rss_poll"); | 769 | q_item = xs_dict_append(q_item, "type", "rss_hashtag_poll"); |
| 770 | job_post(q_item, 0); | 770 | job_post(q_item, 0); |
| 771 | } | 771 | } |
| 772 | 772 | ||