Skip to content

Commit

Permalink
Revert thread and config changes
Browse files Browse the repository at this point in the history
  • Loading branch information
antesaj committed Apr 7, 2023
1 parent 1206a27 commit 31c91de
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
2 changes: 0 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,6 @@ exclude_lines =
precision = 1

[run]
timid=True
concurrency = thread
omit =
tabpy/models/*
tabpy/tabpy.py
Expand Down
4 changes: 1 addition & 3 deletions tests/unit/server_tests/test_arrow_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,7 @@ def setUp(self):
self.arrow_server = FlightServer(host, location)
def start_server():
pa.start(self.arrow_server)
t = threading.Thread(target=start_server, args=(), daemon=True)
t.start()
# _thread.start_new_thread(start_server, ())
_thread.start_new_thread(start_server, ())
# Set up a flight client
self.arrow_client = pyarrow.flight.FlightClient(location)

Expand Down

0 comments on commit 31c91de

Please sign in to comment.