mirror of
https://github.com/element-hq/element-web
synced 2024-11-25 10:45:51 +03:00
Add tracebacks to deploy exceptions
This commit is contained in:
parent
01eef7eb41
commit
62579ed6b0
1 changed files with 2 additions and 0 deletions
|
@ -13,6 +13,7 @@
|
|||
from __future__ import print_function
|
||||
import json, requests, tarfile, argparse, os, errno
|
||||
import time
|
||||
import traceback
|
||||
from urlparse import urljoin
|
||||
|
||||
from flask import Flask, jsonify, request, abort
|
||||
|
@ -124,6 +125,7 @@ def fetch_jenkins_build(job_name, build_num):
|
|||
try:
|
||||
extracted_dir = deploy_tarball(tar_gz_url, build_dir)
|
||||
except DeployException as e:
|
||||
traceback.print_exc()
|
||||
abort(400, e.message)
|
||||
|
||||
create_symlink(source=extracted_dir, linkname=arg_symlink)
|
||||
|
|
Loading…
Reference in a new issue