Kenji Pa

Results 11 issues of Kenji Pa

An panic is raised when a file is uploaded without Content-Type header. User would generally expect a error message instead of a `panic occurred while handling request: runtime error: index...

type/bug

It would be extremely helpful for those who need exact number storage / calculation in a skygear app. - Skygear Server Date/Version: v1.3.1 - Application Platform: server, js, iOS, android...

type/improvement

I deployed a EKS stack with this quickstart on 08/10. I tried to update the entrypoint template today (12/10) with more outputs by updating the stack template, and was met...

Could simply switch to `xcodebuild` (with `xcpretty`) or `xcbuild` :P

If supplied with `DATABASE_URL` without auth (e.g. `postgresql:///mydb`, which is a valid connection string accepted by `psql`), `skygear-node` crashes. ```sh > DATABASE_URL=postgresql:///mydb ./node_modules/.bin/skygear-node /Users/limouren/myproject/node_modules/skygear-core/dist/cloud/pg.js:38 var auth = params.auth.split(':'); ^ TypeError:...

type/bug
workflow/Pending Release

Consider two apps App A and App B being deployed on `http://example.com/a` and `http://example.com/b` respectively (Note that they are on the same host). 1. Visit App A 2. Open inspector...

type/bug
vote/1

Consider this hook registration: ```js skygearCloud.beforeSave('record', () => { console.log('beforeSave') }) ``` `skygear-node` would fail to start on MacOS. Related portion of stack trace: ``` (node:27631) UnhandledPromiseRejectionWarning: Error: Digest method...

type/bug

Save a record leading to an asset save, an error will be thrown: ![simulator screen shot - iphone se - 2018-11-06 at 16 01 41](https://user-images.githubusercontent.com/1427085/48050622-5da64580-e1dd-11e8-9054-27338ff0c0b6.png) The offending line should be:...

type/bug

Currently there is a list of classes accessible as attribute accessor from the default export of the `skygear` module: ```js import skygear from "skygear"; skygear.Query; skygear.Role; skygear.ACL; skygear.Record; skygear.UserRecord; skygear.Sequence;...

type/improvement

Consider this situation ``` // config.js { skygearHost: 'http://localhost:3000/' } ``` ``` // index.js import skygear from 'skygear'; import config from './config'; skygear.config({ endPoint: config.skygearhost, }).then(() => { console.log('Success!'); //...

type/bug