Skip to content

Commit

Permalink
Fix backport issues
Browse files Browse the repository at this point in the history
  • Loading branch information
natefoo committed Oct 13, 2017
1 parent 2f79351 commit 9fa9d42
Show file tree
Hide file tree
Showing 6 changed files with 2 additions and 5 deletions.
1 change: 1 addition & 0 deletions lib/galaxy/datatypes/tabular.py
Expand Up @@ -8,6 +8,7 @@
import logging
import os
import re
import shutil
import subprocess
import tempfile
from cgi import escape
Expand Down
Expand Up @@ -3,7 +3,6 @@
produced by SMRT Portal.
"""
import logging
import urllib2
from string import Template

import requests
Expand Down
1 change: 0 additions & 1 deletion lib/galaxy/jobs/runners/util/kill.py
Expand Up @@ -2,7 +2,6 @@
import subprocess
from platform import system
from time import sleep
from subprocess import Popen

try:
from psutil import Process, NoSuchProcess
Expand Down
1 change: 0 additions & 1 deletion lib/galaxy/tools/imp_exp/unpack_tar_gz_archive.py
Expand Up @@ -11,7 +11,6 @@
import optparse
import tarfile
import tempfile
import urllib2
import math
from base64 import b64decode

Expand Down
2 changes: 1 addition & 1 deletion lib/galaxy/web/proxy/__init__.py
Expand Up @@ -254,6 +254,6 @@ def handle_requests(self, authentication, proxy_requests, route_name, container_
excp = "Could not contact proxy after %s seconds" % sum(range(sleep + 1))
raise Exception(excp)
time.sleep(sleep)
self.handle_requests(authentication, proxy_requests, route_name, container_ids, container_interface, sleep=sleep + 1)
self.handle_requests(authentication, proxy_requests, route_name, container_ids, sleep=sleep + 1)

# TODO: MQ diven proxy?
1 change: 0 additions & 1 deletion lib/tool_shed/capsule/capsule_manager.py
Expand Up @@ -5,7 +5,6 @@
import tarfile
import tempfile
import threading
import urllib
from time import gmtime
from time import strftime

Expand Down

0 comments on commit 9fa9d42

Please sign in to comment.