Using Haystack offline #3394
-
Hi there, I am trying to use Haystack offline. Everything works out except for one thing. When I create a SQLDocumentStore (or any kind of store):
The store is created correctly but I also get the following message:
Why is it trying to establish a connection and can I prevent it from doing that? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 12 replies
-
Hello @aschatzHM! As you can read in the docs, Haystack relies on anonymous usage statistics to support continuous software improvements for all its users. The telemetry module requires an Internet connection. If you want to disable telemetry, you can do it within Python: from haystack.telemetry import disable_telemetry
disable_telemetry() Alternatively, you can set the environment variable |
Beta Was this translation helpful? Give feedback.
-
We found the problem and it should be fixed now on the main branch after we just merged #3465
The error message doesn't show up anymore for me. Please let me know if you are still facing this issue. |
Beta Was this translation helpful? Give feedback.
We found the problem and it should be fixed now on the main branch after we just merged #3465
I tested it locally by running:
The error message doesn't show up anymore for me. Please let me know if you are still facing this issue.