when I try to add a worker with the scheduler address by running the below command:
dask-worker tcp://10.142.0.3:8786
My scheduler gives "add_worker() got an unexpected keyword argument 'versions' as shown below":
distributed.core - ERROR - add_worker() got an unexpected keyword argument 'versions'
Traceback (most recent call last):
File "/home/rsa-key-20180725/.local/lib/python3.6/site-packages/distributed/core.py", line 412, in handle_comm
result = handler(comm, **msg)
TypeError: add_worker() got an unexpected keyword argument 'versions'
But the worker didn't throw any error and it gave something like this
distributed.nanny - INFO - Start Nanny at: 'tcp://10.142.0.6:45083'
distributed.worker - INFO - Start worker at: tcp://10.142.0.6:35275
distributed.worker - INFO - Listening to: tcp://10.142.0.6:35275
distributed.worker - INFO - Waiting to connect to: tcp://10.142.0.3:8786
distributed.worker - INFO - -------------------------------------------------
distributed.worker - INFO - Threads: 16
distributed.worker - INFO - Memory: 63.32 GB
distributed.worker - INFO - Local Directory: /home/rsa-key-20180725/dask-worker-space/worker-t9crpot3
distributed.worker - INFO - -------------------------------------------------
What is the problem and what could be done?... Thanks in advance!!