Douglas Gubert
Douglas Gubert
It looks like the Deno process is not being able to start. Do you have server logs you can share?
Exactly, I'm particularly interested in logs that mention a "subprocess" If there are none, try to capture the sequence of logs that happen right after you try to enable an...
@mjanssen-kernspin can you please run the server with the following environment variable: `DEBUG='*'` This should give us some insight into why the apps are failing to start. It will be...
Thanks for sharing your extra steps @lovekyleman @peterupriuse ! It seems indeed that creating the `.cache` is the catch for manual deployments. We will adjust the scripts on the apps-engine...
Hey @thokich , appreciate the concern. The warning you see in the server means that Rocket.Chat tried to create an index for a specific query _but that index already existed,...
We're discussing how to better handle this situation, whether and how to supress. We've reverted the naming of that index in the meanwhile https://github.com/RocketChat/Rocket.Chat/pull/36358
A word about the `Subprocess stderr` messages in the logs: those that you've seen specifically do not report on an issue; we've switched the runtime of Apps-Engine to use Deno,...
Thanks for this! I just think we're missing here the signature for the method in the `App` class, like the [`onInstall` event here](https://github.com/RocketChat/Rocket.Chat.Apps-engine/blob/3a59d4018a94026bd269bc569fa31f28a92a5a63/src/definition/App.ts#L182) for example. Regarding contextual information about the...
Example usage: ```typescript export class ExampleApp extends App { public async onUpdate(context: IAppUpdateContext, read: IRead, http: IHttp, persistence: IPersistence, modify: IModify): Promise { console.log("Hello from update", context); const message =...
Hey everyone. I've tried replicating this issue, with no success. Here is the docker compose file I've used to start the service on version 6.9.5: ```yaml volumes: mongodb_data: { driver:...