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 abb695a commit b21c39eCopy full SHA for b21c39e
src/genie_python/genie.py
@@ -14,7 +14,10 @@
14
15
from genie_python.genie_api_setup import __api as _genie_api
16
17
-os.environ["EPICS_CA_MAX_ARRAY_BYTES"] = "20000000"
+EPICS_CA_MAX_ARRAY_BYTES = "EPICS_CA_MAX_ARRAY_BYTES"
18
+if EPICS_CA_MAX_ARRAY_BYTES not in os.environ:
19
+ os.environ[EPICS_CA_MAX_ARRAY_BYTES] = "20000000"
20
+
21
os.environ["FROM_IBEX"] = str(False)
22
23
# for user import this functionality so they can do g.adv and g.sim
0 commit comments