diff options
author | Gabriel A. Giovanini <mail@gabrielgio.me> | 2022-06-10 22:20:13 +0200 |
---|---|---|
committer | Gabriel A. Giovanini <mail@gabrielgio.me> | 2022-06-10 22:20:13 +0200 |
commit | 0e147a780e74b54afbd56ff7438077d855d5c1c2 (patch) | |
tree | 25296b0370513c757416ea6d5e7258b4069b1307 /contrib | |
parent | 17d160e5f9cdd4e46b0ab08cf56eaedd8943d885 (diff) | |
download | macroblog.rs-0e147a780e74b54afbd56ff7438077d855d5c1c2.tar.gz macroblog.rs-0e147a780e74b54afbd56ff7438077d855d5c1c2.tar.bz2 macroblog.rs-0e147a780e74b54afbd56ff7438077d855d5c1c2.zip |
ref: Move from HTML to MD
Keep and write in html is pain, so I'm rendering md as html.
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/locust/locustfile.py | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/contrib/locust/locustfile.py b/contrib/locust/locustfile.py index ca7f8f3..fd22508 100644 --- a/contrib/locust/locustfile.py +++ b/contrib/locust/locustfile.py @@ -7,12 +7,12 @@ class HelloWorldUser(HttpUser): @task def posts(self): - self.client.get("/posts/2021-12-28K8S_private_gitlab_registry_using_podman.html") - self.client.get("/posts/2021-12-26Enable_NFS_on_K3S.html") - self.client.get("/posts/2020-08-22Moving_from_Github_to_Gilab_pages.html") - self.client.get("/posts/2020-07-14Friz_box_turned_off_DHCP.html") - self.client.get("/posts/2020-07-12Road_to_local_K8S.html") - self.client.get("/posts/2019-11-16Compiling_emacs_from_source_code_on_fedora.html") - self.client.get("/posts/2019-04-22Automating_desktop_setup_with_ansible-pull_part-2.html") - self.client.get("/posts/2019-03-07Automating_desktop_setup_with_ansible-pull_part-1.html") - self.client.get("/posts/2019-03-03Welcome_to_my_blog.html") + self.client.get("/posts/2021-12-28K8S_private_gitlab_registry_using_podman.md") + self.client.get("/posts/2021-12-26Enable_NFS_on_K3S.md") + self.client.get("/posts/2020-08-22Moving_from_Github_to_Gilab_pages.md") + self.client.get("/posts/2020-07-14Friz_box_turned_off_DHCP.md") + self.client.get("/posts/2020-07-12Road_to_local_K8S.md") + self.client.get("/posts/2019-11-16Compiling_emacs_from_source_code_on_fedora.md") + self.client.get("/posts/2019-04-22Automating_desktop_setup_with_ansible-pull_part-2.md") + self.client.get("/posts/2019-03-07Automating_desktop_setup_with_ansible-pull_part-1.md") + self.client.get("/posts/2019-04-22Ansible_part_2.md") |