Skip to content

Commit

Permalink
fix jupyterq_licensemgr to support kdb+ 4.0 banner (#68)
Browse files Browse the repository at this point in the history
Co-authored-by: Alexander Clouter <[email protected]>
  • Loading branch information
jimdigriz and Alexander Clouter authored Sep 7, 2021
1 parent 4d8bdcd commit c6ba088
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jupyterq_licensemgr/jupyterq_licensemgr/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def get(self):
elif status == "host":
result['action'] = "license"
result['info'] = "Wrong hostname on license"
elif status == "kc.lic" or status == "k4.lic" or status == 'detected and no license found.': # no license, or corrupt license
elif status == "kc.lic" or status == "k4.lic" or status == 'detected and no license found.' or status == 'licence error: kc.lic' or status == 'licence error: k4.lic': # no license, or corrupt license
result['action'] = "license"
result['info'] = "Unlicensed workstation"
elif status == "ok":
Expand Down

0 comments on commit c6ba088

Please sign in to comment.