forked from indymedia/epicyon
Swap order so that it's easier to sort
parent
bfa82fbc0d
commit
6bdcf49c56
|
@ -831,11 +831,11 @@ class PubServer(BaseHTTPRequestHandler):
|
||||||
|
|
||||||
def _benchmarkGET(self,GETstartTime):
|
def _benchmarkGET(self,GETstartTime):
|
||||||
if self.server.debug:
|
if self.server.debug:
|
||||||
print('BENCHMARK GET|'+self.path+'|'+str(int((time.time()-GETstartTime)*1000)))
|
print('BENCHMARK GET|'+str(int((time.time()-GETstartTime)*1000))+'|'+self.path)
|
||||||
|
|
||||||
def _benchmarkPOST(self,POSTstartTime):
|
def _benchmarkPOST(self,POSTstartTime):
|
||||||
if self.server.debug:
|
if self.server.debug:
|
||||||
print('BENCHMARK POST|'+self.path+'|'+str(int((time.time()-POSTstartTime)*1000)))
|
print('BENCHMARK POST|'+str(int((time.time()-POSTstartTime)*1000))+'|'+self.path)
|
||||||
|
|
||||||
def do_GET(self):
|
def do_GET(self):
|
||||||
GETstartTime=time.time()
|
GETstartTime=time.time()
|
||||||
|
|
Loading…
Reference in New Issue