IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Apr 16, 2013, 6:27:02 AM (13 years ago)
Author:
eugene
Message:

add error handling for dvopsps skytable; add config entry for memory usage for memory db tables; add / fix version parsing; error handling for xmllint; error handline for dvograbber (unused); set max_heap_table_size before creating memory tables; add error handling for dvopsps objects; break on error from dvopsps detections; do not try to populate Chip table unless it exists; skip batch on failure, but continue to load

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/eam_branches/ipp-20130307/ippToPsps/jython/mysql.py

    r35352 r35402  
    5555            rs.first()
    5656            fullVersion = rs.getString(1)
    57             self.version = fullVersion[0:3]
     57            majVersion = fullVersion[0:3]
     58            self.version = float(majVersion)
    5859           
    5960        except:
     
    6162            raise
    6263
    63         # print "version number: ", self.version
    6464        self.connected = True
    6565
Note: See TracChangeset for help on using the changeset viewer.