Gabriel Cipriano

Results 9 comments of Gabriel Cipriano

that's a cool feature

> Faced kind of the same problem with `replication` configured > > * Stop mysqld after ts server started > * Restart mysqld again > * It'll never reconnect. With...

One way to get around of this is the function access the outer scope (such as the global scope) getData could access a variable to update it's value, and processData...

'Schedule' don't have Job persistence (it can't remember schedules between restarts), that means that if you have a task to be executed every year, if your program restart anytime in...

> I am wondering if this could be done as a particular `on first day of the month` or similar. to avoid the problem laid out by @gabrielcipriano above. That's...

hey. Isn't that the `'strapi::logger'` middleware? if so, have you tried disable it?

Hey, this problem is not related to supertest. in the last line of your app.ts you exported the app like that: `module.exports= app;` when importing it on `movie.test.ts`, you imported...

Have you tried something like this? ``` pop < message.md \ --from "Example Name " \ --to "[email protected]" \ --subject "Hello, world!" \ --attach invoice.pdf ```

same issue here, `typeorm 0.3.11` with `mysql 8` `"message":"Duplicate column name 'MysqlPendency_box_id'"` because of this relationship: ```typescript @ManyToOne(() => MysqlBox, (box) => box.pendencies, { nullable: false, eager: true, }) @JoinColumn({...