Error with Mercurial and Jenkins [closed]

0

I have this error in Mercurial and Jenkins :

  

Console output:

     

Started by user admin
  Building in workspace /jenkins/jobs/proyecto/workspace
[WS-CLEANUP] Delete project workspace ...
[WS-CLEANUP] Done
$hg clone --rev default --noupdate link / jenkins / jobs / project / workspace
  Abort: HTTP Error 404: Not found
  Error: Failed to clone link
  Error: Failed to clone link
  Finished: Failure

    
asked by Diego 21.05.2017 в 07:16
source

1 answer

2

Do not use the authorization data in URL, get a normal URL (stripped)

hg clone ... http://rhodecode.com/admin/proyecto3

and [auth] Section in Mercurial ini-global file

[auth]
rhodecode.com.prefix = rhodecode.com
rhodecode.com.username = admin
rhodecode.com.password = admin1234
    
answered by 22.05.2017 в 01:37