fixes for the massive changes we did to the app source code.
This commit is contained in:
parent
51024c2a9b
commit
70eb27291f
2 changed files with 3 additions and 3 deletions
2
.github/workflows/main.yml
vendored
2
.github/workflows/main.yml
vendored
|
|
@ -43,7 +43,7 @@ jobs:
|
||||||
- name: Update Version File
|
- name: Update Version File
|
||||||
uses: ArabCoders/write-version-to-file@master
|
uses: ArabCoders/write-version-to-file@master
|
||||||
with:
|
with:
|
||||||
filename: "/app/version.py"
|
filename: "/app/library/version.py"
|
||||||
placeholder: "dev-master"
|
placeholder: "dev-master"
|
||||||
|
|
||||||
- name: Set up QEMU
|
- name: Set up QEMU
|
||||||
|
|
|
||||||
|
|
@ -109,7 +109,7 @@ class HttpAPI(common):
|
||||||
contentType = self.extToMime.get(os.path.splitext(file)[1], MIME.from_file(file))
|
contentType = self.extToMime.get(os.path.splitext(file)[1], MIME.from_file(file))
|
||||||
|
|
||||||
self.staticHolder[urlPath] = {'content': content, 'content_type': contentType}
|
self.staticHolder[urlPath] = {'content': content, 'content_type': contentType}
|
||||||
LOG.info(f'Preloading: [{urlPath}].')
|
LOG.debug(f'Preloading: [{urlPath}].')
|
||||||
app.router.add_get(urlPath, self.staticFile)
|
app.router.add_get(urlPath, self.staticFile)
|
||||||
|
|
||||||
if urlPath.endswith('/index.html') and urlPath != '/index.html':
|
if urlPath.endswith('/index.html') and urlPath != '/index.html':
|
||||||
|
|
@ -186,7 +186,7 @@ class HttpAPI(common):
|
||||||
|
|
||||||
@route('GET', 'ping')
|
@route('GET', 'ping')
|
||||||
async def ping(self, _) -> Response:
|
async def ping(self, _) -> Response:
|
||||||
self.queue.test()
|
await self.queue.test()
|
||||||
return web.Response(text='pong')
|
return web.Response(text='pong')
|
||||||
|
|
||||||
@route('POST', 'add')
|
@route('POST', 'add')
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue