We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e97f51c commit f30748bCopy full SHA for f30748b
docs/infrastructure-macos.md
@@ -325,3 +325,14 @@ sudo /Users/alibuild/restart-services.sh
325
### Macs continuously running out of memory
326
327
Make sure the Crash Reporter is disabled, as it can cause jobs like `o2-framework-crashing-workflow` to hang indefinitely.
328
+
329
+### Nomad cannot stream logs (Path escapes the alloc directory)
330
331
+Nomad has issues following symlinks in the data_dir, you can solve it by replacing it for the real path.
332
333
+e.g in `nomad.hcl`:
334
335
+```diff
336
+- data_dir = "/opt/build/nomad"
337
++ data_dir = "/Volumes/build/nomad"
338
+```
0 commit comments