diff options
author | Gabriel A. Giovanini <mail@gabrielgio.me> | 2022-06-11 00:18:54 +0200 |
---|---|---|
committer | Gabriel A. Giovanini <mail@gabrielgio.me> | 2022-06-11 00:18:54 +0200 |
commit | 96c2cbe1850f95806cccb6f47a7739eb9c2ac860 (patch) | |
tree | e3813fc2d7e9c408a66a8e92cfe912a9c1569c23 /contrib/locust | |
parent | 4fb323f69c11557a51c7da0b2031029f63edf789 (diff) | |
download | macroblog.rs-96c2cbe1850f95806cccb6f47a7739eb9c2ac860.tar.gz macroblog.rs-96c2cbe1850f95806cccb6f47a7739eb9c2ac860.tar.bz2 macroblog.rs-96c2cbe1850f95806cccb6f47a7739eb9c2ac860.zip |
fix: Fix blog post timestamps
For some the timestamp got messed up. Now they should be restored
properly as well the `locustfile.py` pointing to the right endpoints.
Diffstat (limited to 'contrib/locust')
-rw-r--r-- | contrib/locust/locustfile.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/contrib/locust/locustfile.py b/contrib/locust/locustfile.py index fd22508..ca4e4d9 100644 --- a/contrib/locust/locustfile.py +++ b/contrib/locust/locustfile.py @@ -11,8 +11,7 @@ class HelloWorldUser(HttpUser): 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/2020-07-12Road_to_local_K3S.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") |