diman82
diman82
> I'm currently developing a solution for this Any estimation for a solution? In the meanwhile, you can try setting env variables REQUESTS_CA_BUNDLE for .pem or SSL_CERT_FILE for .crt :...
@teun95 You miss the point. Think if you download a 20GB file - you'll have to wait for it to dl to a local storage, and then and only then...
@teun95 You're right in your concept, but your request can be quite easily achieved with a shell script, and it doesn't directly relates to the current project. Simply monitor a...
My server is in an enterprise environment, so a bit limited..
I've created Jenkins api token, but I can't input it, as I'm being redirected to Openshift login page. inputting api token in your plugin password field still yields 'bad credentials'...
> Could you try to use API token as Password. > > In my setup it works (only PyCharm not works correctly) Ok, it worked. P.S. It's required to add...
> @sushmit86 , are you using an ipython notebook? If so, what I found was that after you install the driver in the filesystem, you have to restart your kernel...
@chris-ratcliffe Can you please elaborate on where to copy the file? Or just provide an example of your own implemnataion? I just hold it in the same path where my...
> @diman82 , it doesn't matter where in your filesystem you copy it to. In my case, I put it on under $HOME/drivers I believe. The key is, after its...
@joebeeson Attaching code fragment (Jupyter cell) and its output: `#%% import jpype jvmPath = jpype.getDefaultJVMPath() print(jpype.getDefaultJVMPath()) print(jpype.isJVMStarted()) print(jdbc_driver_loc) args='-Djava.class.path=%s' % jdbc_driver_loc jpype.addClassPath(jdbc_driver_loc) # if jpype.isJVMStarted(): # jpype.startJVM(jvmPath, args) # If...