Closed mdw00d closed 3 years ago
The protocol parameter is not correctly handled; this is due to a typo in the following line of code:
https://github.com/franzinc/agraph-python/blob/db2b155f43e5af16851117b88baf90ff3c297608/src/franz/openrdf/connect.py#L102
which says:
server = AllegroGraphServer(host=host, port=port, protcol=protocol,
Note the misspelling "protcol=protocol".
The work-around for this is to use the full URI as the host, rather than trying to pass in host, port and protocol separately.
Thank you for pointing this out. We'll make a new release soon including this fix.
101.0.8 with the fix is now in github. It hasn't been uploaded to PyPi or conda yet.
The protocol parameter is not correctly handled; this is due to a typo in the following line of code:
https://github.com/franzinc/agraph-python/blob/db2b155f43e5af16851117b88baf90ff3c297608/src/franz/openrdf/connect.py#L102
which says:
Note the misspelling "protcol=protocol".
The work-around for this is to use the full URI as the host, rather than trying to pass in host, port and protocol separately.