Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🪲 Running programs throws an error if logged in #5513

Merged
merged 9 commits into from
May 10, 2024
Merged

Commits on May 9, 2024

  1. 🪲 Fix running programs when logged in

    When logged in, we automatically save a program as the user runs it.
    
    In a recent change, we update the program counter only when a program is
    modified from the example code. But we wrote the entire 'program' record
    back to the database in an `update()` call, which includes the `id`
    field; Dynamo does not allow including the `id` field in an `update()`
    call.
    
    Instead, only update the `is_modified` field, and update the Dynamo
    abstraction layer to check for this error condition.
    rix0rrr committed May 9, 2024
    Configuration menu
    Copy the full SHA
    ca6acdd View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    07c751f View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    0a1f71e View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    7f695a7 View commit details
    Browse the repository at this point in the history

Commits on May 10, 2024

  1. Configuration menu
    Copy the full SHA
    876268a View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    83b50e8 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    c440375 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    3f1e713 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    5b5cbdb View commit details
    Browse the repository at this point in the history