jason.o

jason.o

Just upgraded ash from 3.4.36 to 3.4.62 and I start to get this error in my reactor module. My code has no :compensate in my_reactor.ex, so I’m assuming it’s coming from Ash.Reactor. Can someone please give some pointers?

== Compilation error in file lib/myapp/reactor/my_reactor.ex ==
**** (Spark.Options.ValidationError) unknown options [:compensate], valid options are: [:async?, :max_retries, :transform, :context, :description, :guards, :ref]**
(spark 2.2.43) lib/spark/dsl/extension.ex:702: Spark.Dsl.Extension.raise_transformer_error/2
(elixir 1.17.2) lib/enum.ex:4858: Enumerable.List.reduce/3
(elixir 1.17.2) lib/enum.ex:2585: Enum.reduce_while/3
myapp/lib/myapp/reactor/my_reactor.ex:1: (file)

defmodule MyApp.MyReactor do
  use Ash.Reactor

  alias MyApp.Tasks.DateInstance

  ash do
    default_domain MyApp.Tasks
  end

  input(:calendar_id)
  input(:date_input)

  ash_step :date_change_calc, MyApp.Tasks.DateChangeCalcStep do
    argument :calendar_id, input(:calendar_id)
    argument :date_input, input(:date_input)
  end

  transaction :delete_and_insert, DateInstance do
    step :delete_unnecessary_date_instances,
         MyApp.Tasks.DeleteUnnecessaryDateInstancesStep do
      argument :date_change_calc_output, result(:date_change_calc)
    end

    step :upsert_updated_date_instances, MyApp.Tasks.UpsertUpdatedDateInstancesStep do
      argument :date_change_calc_output, result(:date_change_calc)
    end
  end

  return(:delete_and_insert)
end

Showing Posts 1 to 4

zachdaniel

zachdaniel

Creator of Ash

This may be an accidental breaking change not reflected in Ash’s dependency on reactor? Try mix deps.update reactor @jimsynz should we update ash’s dependency or something?

jimsynz

jimsynz

Ash Core Team

It looks like they already have Reactor 0.11 (judging by guards being allowed in the options). Steps definitely have a compensate option however.

zachdaniel

zachdaniel

Creator of Ash

Strange. Something must have broken it in ash_reactor. Please open a bug and we will look into it.

ken-kost

ken-kost

I think it’s related to ash_step which calls Builder.add_step, which has first step

{:ok, options} <- Spark.Options.validate(options, @option_schema),

and the problem is in @option_schema which does not have this new option.

I made a PR adressing this.

— All posts loaded —

Where Next? Top

Trending in Questions Top

RSP87
I’m working on a project that simulates the bumbl example in the programming phoenix book. It acts almost like an email client. We have a...
New
nseaSeb
Hello, I know there is an approach for handling lists that allows for optimized traversal, but I can’t recall the specific method (somet...
New
RemyXRenard
I’m seeing that a list inside a Kino.DataTable will be interpreted as a charlist, even if the Kino.configure() is set to charlists: :as_l...
New
brecabral
Documentation While reading the Scoped Routes section, I noticed that the documentation currently refers to a problem without explainin...
New
velrest
So my question is quite simple and i have found no conclusive answer on forum, google or AI. Should we use :erlang.float for Integer to ...
New
samoloth
Hi, I’ve just set up an application with ash_authentication. There is only magic link strategy for now, so there is no confirmation add o...
New
FlyingNoodle
If a change or preparation module uses Ash.Changeset.get_argument/2 or Ash.Query.get_argument/2 (or any of the other get_argument functio...
New

Other Trending Topics Top

mudasobwa
I am happy to introduce the very α version of the new programming language compiled to BEAM. Welcome Cure. It has literally three kille...
New
marciok
Hi there! We created Gust: A task orchestrator inspired by Airflow. For those who have never heard about Aiflow, it’s a Python-based wor...
New
mhanberg
Hi everyone! The first release candidate for the Expert language server project is now available! We’ve published a press release detai...
New
jimsynz
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Dmk
Xamal is a deployment tool for Elixir apps that deploys native releases to bare metal servers over SSH. It’s a port of GitHub - basecamp/...
New
netoum
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New

We're in Beta

About us Mission Statement

Options

Thread Display Mode




Thread Preview

Skip Thread Previews