axi92

Results 22 comments of axi92

The endpoint would be https://releases.evva.link/sfw-releases/ And the config: ``` { debug order authenticate before respond order authorize before basicauth security { oauth identity provider keycloak { driver generic realm keycloak...

Yes the problem is how do I get the token from the auth portal? I used this ``` export TKN=$(curl -X POST 'https://keycloak.evva.com/auth/realms/master/protocol/openid-connect/token' \ -H "Content-Type: application/x-www-form-urlencoded" \ -d 'username=USERNAME'...

Is there a recommended way to healthcheck a caddy instance?

I get the same error: ``` An unexpected error occurred while searching for your Sonos System: {"stack":"TypeError: Cannot read property 'forEach' of undefined at SonosNetwork._getQueue (/home/username/.sonos-web/src/sonos/SonosNetwork.js:715:19) at runMicrotasks () at...

I debugged the _aaplicationmanagement.py file and found out that it breaks here https://github.com/serhatbolsu/robotframework-appiumlibrary/blob/master/AppiumLibrary/keywords/_applicationmanagement.py#L52 The desired caps are those: ``` { 'app': '/home/redacted/repo/redacted-life-cycle/binaries/apk/app-release-5.48.1.apk', 'appActivity': 'MainActivity', 'appPackage': 'com.redacted.aess.android.programmingdevice', 'automationName': 'UIAutomator2', 'deviceName': '192.168.3.203:5555',...

It was an incompatibility with higher selenium versions. The problem is that robotframework-appiumlibrary uses https://github.com/appium/python-client Version: 1.1.0 And The [python-client v1.1.0 needs selenium 4.0.0](https://github.com/robotframework/SeleniumLibrary/blob/master/requirements.txt#L1)

This fails for me too! ``` ERROR: pip's dependency resolver does not currently take into account all the packages that are installed. This behaviour is the source of the following...

A ca-certificate https://github.com/request/request#tlsssl-protocol We use a self signed cert, so I need to pass the cert to the request.

I moved in all of my projects to https://www.npmjs.com/package/got where I used request. Got is nice to use and behaves similar to request.

Hmm it looks like that. The end event is never called without those changes that I made. I can connect, auth, execute the command but end() is never resolved... @Hornwitser...