logdetective 0.5.0__tar.gz → 0.5.2__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: logdetective
3
- Version: 0.5.0
3
+ Version: 0.5.2
4
4
  Summary: Log using LLM AI to search for build/test failures and provide ideas for fixing these.
5
5
  License: Apache-2.0
6
6
  Author: Jiri Podivin
@@ -325,6 +325,12 @@ Fore some reason, we need to manually run this command after every reboot:
325
325
  nvidia-ctk cdi generate --output=/etc/cdi/nvidia.yaml
326
326
  ```
327
327
 
328
+ HTTPS certificate generated through:
329
+
330
+ ```
331
+ certbot certonly --standalone -d logdetective01.fedorainfracloud.org
332
+ ```
333
+
328
334
 
329
335
  License
330
336
  -------
@@ -288,6 +288,12 @@ Fore some reason, we need to manually run this command after every reboot:
288
288
  nvidia-ctk cdi generate --output=/etc/cdi/nvidia.yaml
289
289
  ```
290
290
 
291
+ HTTPS certificate generated through:
292
+
293
+ ```
294
+ certbot certonly --standalone -d logdetective01.fedorainfracloud.org
295
+ ```
296
+
291
297
 
292
298
  License
293
299
  -------
@@ -48,7 +48,7 @@ SERVER_CONFIG_PATH = os.environ.get("LOGDETECTIVE_SERVER_CONF", None)
48
48
 
49
49
  SERVER_CONFIG = load_server_config(SERVER_CONFIG_PATH)
50
50
 
51
- MR_REGEX = re.compile(r"refs/merge-requests/(\d+)/merge")
51
+ MR_REGEX = re.compile(r"refs/merge-requests/(\d+)/.*$")
52
52
  FAILURE_LOG_REGEX = re.compile(r"(\w*\.log)")
53
53
 
54
54
  LOG = get_log(SERVER_CONFIG)
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "logdetective"
3
- version = "0.5.0"
3
+ version = "0.5.2"
4
4
  description = "Log using LLM AI to search for build/test failures and provide ideas for fixing these."
5
5
  authors = ["Jiri Podivin <jpodivin@gmail.com>"]
6
6
  license = "Apache-2.0"
File without changes