You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, I am having issues with Docker version of your app using OAuth2
bbbackup.cfg
[authorization]
; enter which auth method to use 'oauth' or 'uidpwd'
auth_method = oauth
[bitbucket_oauth]
; enter oauth 2.0 credentials here
key_or_id = /*OAuth consumers - key*/
secret = /*OAuth consumers - secret*/
app_name = /*OAuth consumers - app name*/
The app is able to read the repositories, but every single one is failing with error:
RETRYING: Try #4 of 3 to clone repo.
REPO SYNC: /clonedbackups/BACKUP_20200524_UTC/repo-name
REPO FAIL: /clonedbackups/BACKUP_20200524_UTC/repo-name
Unable to clone repo repo-name. Exception: Cmd('git') failed due to: exit code(128)
cmdline: git clone --no-single-branch -v [email protected]:team-name/repo-name.git /clonedbackups/BACKUP_20200524_UTC/repo-name
stderr: 'Cloning into '/clonedbackups/BACKUP_20200524_UTC/repo-name'...
Host key verification failed.
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
'
OAuth Customer settings:
I understand the error, I could solve this adding public SSH certificate into ~./ssh/known-hosts, however, since this is Docker I should amend the Dockerfile to copy the certificate there every time, but I do not think this is the right approach.
Maybe the only thing which is not clear is Callback URL, what should I put here?
How to solve this?
The text was updated successfully, but these errors were encountered:
Hi, I am having issues with Docker version of your app using OAuth2
bbbackup.cfg
The app is able to read the repositories, but every single one is failing with error:
OAuth Customer settings:
![image](https://user-images.githubusercontent.com/34549825/82755356-31f4ab80-9dd3-11ea-9d91-31c3cef88fcf.png)
I understand the error, I could solve this adding public SSH certificate into
~./ssh/known-hosts
, however, since this is Docker I should amend the Dockerfile to copy the certificate there every time, but I do not think this is the right approach.Maybe the only thing which is not clear is
Callback URL
, what should I put here?How to solve this?
The text was updated successfully, but these errors were encountered: