[bug] #707
Labels
No labels
approved, awaiting change
bug
configuration
documentation
duplicate
enhancement
extremely low priority
feature request
Fix it yourself
help wanted
invalid
mastodon_api
needs docs
needs tests
not a bug
planned
pleroma_api
privacy
question
static_fe
triage
wontfix
No milestone
No project
No assignees
3 participants
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: AkkomaGang/akkoma#707
Loading…
Add table
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Your setup
From source
Extra details
Ubuntu jammy & lunar
Version
latest stable
PostgreSQL version
14
What were you trying to do?
I'm trying to upgrade my install of akkoma to latest and I'm getting a compile error with latest release. I'm using docker, but I suspectthe same will apply to normal source installs.
What did you expect to happen?
Akkoma compiles.
What actually happened?
==> calendar
Compiling 18 files (.ex)
warning: missing parentheses for expression following "do:" keyword. Parentheses are required to solve ambiguity inside keywords.
This error happens when you have function calls without parentheses inside keywords. For example:
In the examples above, we don't know if the arguments "b" and "c" apply to the function "function" or "nested_call". Or if the keywords "do" and "else" apply to the function "function" or "if". You can solve this by explicitly adding parentheses:
Ambiguity found at:
lib/calendar/strftime.ex:167
warning: missing parentheses for expression following "do:" keyword. Parentheses are required to solve ambiguity inside keywords.
This error happens when you have function calls without parentheses inside keywords. For example:
In the examples above, we don't know if the arguments "b" and "c" apply to the function "function" or "nested_call". Or if the keywords "do" and "else" apply to the function "function" or "if". You can solve this by explicitly adding parentheses:
Ambiguity found at:
lib/calendar/strftime.ex:168
warning: missing parentheses for expression following "do:" keyword. Parentheses are required to solve ambiguity inside keywords.
This error happens when you have function calls without parentheses inside keywords. For example:
In the examples above, we don't know if the arguments "b" and "c" apply to the function "function" or "nested_call". Or if the keywords "do" and "else" apply to the function "function" or "if". You can solve this by explicitly adding parentheses:
Ambiguity found at:
lib/calendar/strftime.ex:169
I'm not able to fix the error. Has anyone got that error too?
I've tried with previous installation of akkoma (now broken), clean installations of ubuntu jammy and lunar. All now have the same error.
Logs
Severity
I cannot use the software
Have you searched for this issue?
those are just warnings, I do not believe they will cause the compilation to cancel
given that the I personally compile from source, I know it does compile
Yes you're right, it eventually built. But starting the docker process was generating crash dump. So I had to start again from scratch. It's now running, but admin-fe doesn't show any options, which is a different issue.
This has been fixed with the latest
stable
on admin-fe. You may want to runmix pleroma.frontend install admin-fe --ref stable
Hi there,
Thanks. I managed to fix that problem yesterday by installing the develop version.
Thanks.