You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The `.pants.bootstrap` file is not mentioned anywhere, but it can be
helpful when declaring environment variables that are going to be
accessible both in `pants.toml` to interpolate and any subprocess Pants
may start (such as when doing `pants run script.py` and there's
`os.getenv("ENVVAR")`).
Copy file name to clipboardexpand all lines: docs/docs/using-pants/troubleshooting-common-issues.mdx
+1-1
Original file line number
Diff line number
Diff line change
@@ -206,7 +206,7 @@ This can be fixed by setting `ulimit -n 10000`. (10,000 should work in all cases
206
206
:::note Tip: permanently configuring `ulimit -n`
207
207
We recommend permanently setting this by either:
208
208
209
-
1. Adding `ulimit -n 10000` to your `pants.bootstrap` script.
209
+
1. Adding `ulimit -n 10000` to your [`.pants.bootstrap`](../using-pants/key-concepts/options.mdx#pantsbootstrap-file) script.
210
210
2. Adding `ulimit -n 10000` to your global `.bashrc` or equivalent.
211
211
212
212
The first two approaches have the benefit that they will be checked into version control, so every developer at your organization can use the same setting.
0 commit comments