Skip to content

Commit

Permalink
f
Browse files Browse the repository at this point in the history
  • Loading branch information
ivanminutillo committed Feb 18, 2025
1 parent 408daeb commit 009bcdb
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
4 changes: 2 additions & 2 deletions config/bonfire_data.exs
Original file line number Diff line number Diff line change
Expand Up @@ -1034,7 +1034,7 @@ config :bonfire_data_social, PostContent,
config :bonfire_data_social, Replied,
code:
(quote do
# multimixins
# multimixins
unquote_splicing(common.([:activities, :activity, :controlled, :like_count, :boost_count]))

belongs_to(:post, unquote(Post), foreign_key: :id, define_field: false)
Expand All @@ -1051,7 +1051,7 @@ config :bonfire_data_social, Replied,
)

# NOTE: query requires an ON clause to filter by thread
# has_one(:pinned, unquote(Pin), foreign_key: :id, references: :id)
# has_one(:pinned, unquote(Pin), foreign_key: :id, references: :id)
# has_one(:pinned_edge, through: [:pinned, :edge])
# has_one(:pins_in_thread, unquote(Edge), # FIXME? won't show pins of custom type (eg. answer)
# foreign_key: :subject_id,
Expand Down
1 change: 0 additions & 1 deletion config/deps.hex
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,6 @@ telemetry = "~> 1.2.0"
httpoison = "~> 2.1"
poison = "~> 6.0" # not our preferred one, but some libs use it
opentelemetry_process_propagator = "~> 0.2"
opentelemetry_exporter = "~> 1.8"
telemetry_metrics = "~> 1.0"
telemetry = "~> 1.2.0"
telemetry_metrics = "~> 1.0"
Expand Down
8 changes: 5 additions & 3 deletions mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,9 @@ defmodule Bonfire.Umbrella.MixProject do
else: []
)

maybe_arch_deps = if(System.get_env("CI") != "true", # NOTE: exqlite not working in CI
# NOTE: exqlite not working in CI
maybe_arch_deps =
if(System.get_env("CI") != "true",
do: [
{
:archeometer,
Expand All @@ -95,7 +97,7 @@ defmodule Bonfire.Umbrella.MixProject do
}
],
else: []
)
)

extra_deps =
main_deps ++
Expand Down Expand Up @@ -407,7 +409,7 @@ defmodule Bonfire.Umbrella.MixProject do
strip_beams: false,
applications:
[
bonfire: :permanent,
bonfire: :permanent
# if observability fails it shouldn’t take your app down with it - FIXME: getting this in CI: Could not find application :opentelemetry
# opentelemetry: :temporary
# opentelemetry_exporter: :temporary,
Expand Down

0 comments on commit 009bcdb

Please sign in to comment.