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

Refactor Deadline Submission JobInfo #49

Open
wants to merge 143 commits into
base: develop
Choose a base branch
from

Commits on Oct 16, 2024

  1. New Settings for CollectJobInfoItem

    These settings should be base of generic JobInfo values for Deadline submission. They should contain variables previously contained in Submit* Settings.
    Some of them should be exposed to Publisher UI as artist overrides.
    kalisp committed Oct 16, 2024
    Configuration menu
    Copy the full SHA
    d1a883b View commit details
    Browse the repository at this point in the history

Commits on Oct 17, 2024

  1. Configuration menu
    Copy the full SHA
    f72e87f View commit details
    Browse the repository at this point in the history
  2. Added collected jobInfo object

    kalisp committed Oct 17, 2024
    Configuration menu
    Copy the full SHA
    2b29403 View commit details
    Browse the repository at this point in the history

Commits on Oct 18, 2024

  1. Use DeadlineJobInfo as collector object

    It was decided that dataclasses should be used instead of attrs. This moves DeadlineJobInfo which is full mapping of JobInfo from abstract submitters to collectors to limit need of new class and necessary remapping later.
    kalisp committed Oct 18, 2024
    Configuration menu
    Copy the full SHA
    cb0d24d View commit details
    Browse the repository at this point in the history
  2. Removed six dependency

    kalisp committed Oct 18, 2024
    Configuration menu
    Copy the full SHA
    37c0a0d View commit details
    Browse the repository at this point in the history
  3. Implemented new generic method applicable for all DCC

    Added new argument for old get_job_info (which should be probabaly renamed) to pass base of prepared object to be enhanced with DCC specific fields
    kalisp committed Oct 18, 2024
    Configuration menu
    Copy the full SHA
    3358838 View commit details
    Browse the repository at this point in the history
  4. Removed unneeded imports

    kalisp committed Oct 18, 2024
    Configuration menu
    Copy the full SHA
    60da8b9 View commit details
    Browse the repository at this point in the history
  5. Do not pass empty string to DeadlineJobInfo

    Empty strings overrides None defaults which might cause issue (it definitely does for job_delay).
    kalisp committed Oct 18, 2024
    Configuration menu
    Copy the full SHA
    ae3c739 View commit details
    Browse the repository at this point in the history
  6. Removed unneded imports

    kalisp committed Oct 18, 2024
    Configuration menu
    Copy the full SHA
    1c8990a View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    57860ce View commit details
    Browse the repository at this point in the history
  8. Removed storign deadline info to instance

    'deadline' dictionary wasnt used at all, it contained large DeadlineJobInfo which just enlarged metadata json unnecessary.
    kalisp committed Oct 18, 2024
    Configuration menu
    Copy the full SHA
    10f566f View commit details
    Browse the repository at this point in the history
  9. Updates to DeadlineJobInfo to match previous implementation

    It is handling EnvironmentKey* type of fields
    kalisp committed Oct 18, 2024
    Configuration menu
    Copy the full SHA
    bbb12b7 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    c26c997 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    e1eba7f View commit details
    Browse the repository at this point in the history
  12. Implemented explicit frames filtering on simple files

    Not yet working on AOVs.
    kalisp committed Oct 18, 2024
    Configuration menu
    Copy the full SHA
    8062462 View commit details
    Browse the repository at this point in the history
  13. Reworked removal of deadline in submit job

    Deadline portion must be there for ValidateExpectedFiles
    kalisp committed Oct 18, 2024
    Configuration menu
    Copy the full SHA
    ec908e0 View commit details
    Browse the repository at this point in the history
  14. Removed empty line

    kalisp committed Oct 18, 2024
    Configuration menu
    Copy the full SHA
    64b22ff View commit details
    Browse the repository at this point in the history
  15. Added empty line at the end

    kalisp committed Oct 18, 2024
    Configuration menu
    Copy the full SHA
    0d3125d View commit details
    Browse the repository at this point in the history
  16. Formatting

    kalisp committed Oct 18, 2024
    Configuration menu
    Copy the full SHA
    c206b24 View commit details
    Browse the repository at this point in the history
  17. Removed forgotten dev code

    kalisp committed Oct 18, 2024
    Configuration menu
    Copy the full SHA
    803c25c View commit details
    Browse the repository at this point in the history
  18. Refactor batchname

    kalisp committed Oct 18, 2024
    Configuration menu
    Copy the full SHA
    201c5b8 View commit details
    Browse the repository at this point in the history

Commits on Oct 30, 2024

  1. Merge develop

    kalisp committed Oct 30, 2024
    Configuration menu
    Copy the full SHA
    57ac094 View commit details
    Browse the repository at this point in the history
  2. Added last empty line

    kalisp committed Oct 30, 2024
    Configuration menu
    Copy the full SHA
    6a280b0 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    6d3fe14 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    f09cde7 View commit details
    Browse the repository at this point in the history
  5. Replaced querying with cached methods

    Depends on ayon-core#967
    kalisp committed Oct 30, 2024
    Configuration menu
    Copy the full SHA
    47f0f8b View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    3ae7c94 View commit details
    Browse the repository at this point in the history
  7. Refactor defs initialization

    kalisp committed Oct 30, 2024
    Configuration menu
    Copy the full SHA
    41e2f03 View commit details
    Browse the repository at this point in the history
  8. Fix instance variable

    kalisp committed Oct 30, 2024
    Configuration menu
    Copy the full SHA
    8227376 View commit details
    Browse the repository at this point in the history
  9. Formatting

    kalisp committed Oct 30, 2024
    Configuration menu
    Copy the full SHA
    24dbf6d View commit details
    Browse the repository at this point in the history
  10. Refactored base definition to array

    Dict was not necessary
    kalisp committed Oct 30, 2024
    Configuration menu
    Copy the full SHA
    87d5f4b View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    2fbc45b View commit details
    Browse the repository at this point in the history
  12. Removed unnecessary condition

    kalisp committed Oct 30, 2024
    Configuration menu
    Copy the full SHA
    c6416ad View commit details
    Browse the repository at this point in the history

Commits on Oct 31, 2024

  1. Separated AYON fields from Deadline own

    This should highlight better separation of AYON fields, that are used for some additional logic.
    kalisp committed Oct 31, 2024
    Configuration menu
    Copy the full SHA
    e593e5d View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    dfa544b View commit details
    Browse the repository at this point in the history
  3. Updated machine_limit handling

    kalisp committed Oct 31, 2024
    Configuration menu
    Copy the full SHA
    ac77178 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    068ae90 View commit details
    Browse the repository at this point in the history
  5. Implemented additional JobInfo, PluginInfo fields

    This field from Settings could be used to push in any not explicitly implemented JobInfo field.
    Current implementation handles also PluginInfo fields, where it might be better to split it to separate object, but not now.
    kalisp committed Oct 31, 2024
    Configuration menu
    Copy the full SHA
    0e3760a View commit details
    Browse the repository at this point in the history

Commits on Nov 1, 2024

  1. Refactor

    Co-authored-by: Roy Nieterau <[email protected]>
    kalisp and BigRoy authored Nov 1, 2024
    Configuration menu
    Copy the full SHA
    26a63d0 View commit details
    Browse the repository at this point in the history
  2. Removed unneeded variable

    kalisp committed Nov 1, 2024
    Configuration menu
    Copy the full SHA
    1352ad0 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    1e9a349 View commit details
    Browse the repository at this point in the history
  4. Refactor

    Co-authored-by: Jakub Trllo <[email protected]>
    kalisp and iLLiCiTiT authored Nov 1, 2024
    Configuration menu
    Copy the full SHA
    a692796 View commit details
    Browse the repository at this point in the history
  5. Refactored task values

    kalisp committed Nov 1, 2024
    Configuration menu
    Copy the full SHA
    67de670 View commit details
    Browse the repository at this point in the history
  6. Merge remote-tracking branch 'origin/feature/AY-6789_Render-instance-…

    …support-of-Frame-List' into feature/AY-6789_Render-instance-support-of-Frame-List
    kalisp committed Nov 1, 2024
    Configuration menu
    Copy the full SHA
    834290a View commit details
    Browse the repository at this point in the history
  7. Removed magic conversion from Settings to fields

    Fields from Settings are explicitly mapped.
    The idea is to remove AYONDeadlineJobInfo if possible and prepare DeadlineJobInfo
    kalisp committed Nov 1, 2024
    Configuration menu
    Copy the full SHA
    dbd9304 View commit details
    Browse the repository at this point in the history
  8. Implemented UsePublished

    Points to published workfile to be rendered (usually).
    kalisp committed Nov 1, 2024
    Configuration menu
    Copy the full SHA
    5fa1034 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    6330f07 View commit details
    Browse the repository at this point in the history
  10. Removed unneeded asset_dependencies

    Replaced by job_info.UseAssetDependencies
    kalisp committed Nov 1, 2024
    Configuration menu
    Copy the full SHA
    7221315 View commit details
    Browse the repository at this point in the history
  11. Replaced missed use_published

    kalisp committed Nov 1, 2024
    Configuration menu
    Copy the full SHA
    436f51f View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    02e0c85 View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    0a22384 View commit details
    Browse the repository at this point in the history
  14. Moved resolution of scene_path earlier

    Must be prepared for PluginInfo
    kalisp committed Nov 1, 2024
    Configuration menu
    Copy the full SHA
    1e71e44 View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    69e9414 View commit details
    Browse the repository at this point in the history
  16. Removed unused import

    kalisp committed Nov 1, 2024
    Configuration menu
    Copy the full SHA
    18b1764 View commit details
    Browse the repository at this point in the history
  17. Refactored Blender submission

    kalisp committed Nov 1, 2024
    Configuration menu
    Copy the full SHA
    d01479a View commit details
    Browse the repository at this point in the history
  18. Refactored querying of plugin

    Could be dynamic value set in instance
    kalisp committed Nov 1, 2024
    Configuration menu
    Copy the full SHA
    2db8418 View commit details
    Browse the repository at this point in the history
  19. Implemented in Harmony

    kalisp committed Nov 1, 2024
    Configuration menu
    Copy the full SHA
    3bf017f View commit details
    Browse the repository at this point in the history
  20. Implemented in Max

    kalisp committed Nov 1, 2024
    Configuration menu
    Copy the full SHA
    91b9101 View commit details
    Browse the repository at this point in the history
  21. Added comments and pools

    kalisp committed Nov 1, 2024
    Configuration menu
    Copy the full SHA
    567ed8c View commit details
    Browse the repository at this point in the history
  22. Refactored JobInfo for Unreal

    kalisp committed Nov 1, 2024
    Configuration menu
    Copy the full SHA
    150bcd7 View commit details
    Browse the repository at this point in the history
  23. Configuration menu
    Copy the full SHA
    31b71b9 View commit details
    Browse the repository at this point in the history

Commits on Nov 4, 2024

  1. Reordered defaults

    This way type validations should kick in for default values.
    kalisp committed Nov 4, 2024
    Configuration menu
    Copy the full SHA
    ce2f93a View commit details
    Browse the repository at this point in the history
  2. Ruff fixes

    kalisp committed Nov 4, 2024
    Configuration menu
    Copy the full SHA
    e39c116 View commit details
    Browse the repository at this point in the history
  3. Fix missing import

    kalisp committed Nov 4, 2024
    Configuration menu
    Copy the full SHA
    96afdfd View commit details
    Browse the repository at this point in the history
  4. Fix empty additional info

    kalisp committed Nov 4, 2024
    Configuration menu
    Copy the full SHA
    7c89b2c View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    e0f1a29 View commit details
    Browse the repository at this point in the history
  6. Improve Delay Job attribute definition (less long label, add placeh…

    …older plus describe more in tooltip)
    BigRoy committed Nov 4, 2024
    Configuration menu
    Copy the full SHA
    af1e4f2 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    f6c3974 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    d8c44d9 View commit details
    Browse the repository at this point in the history
  9. Merge branch 'feature/AY-6789_Render-instance-support-of-Frame-List' …

    …into feature/AY-6789_Render-instance-support-of-Frame-List-fusion
    kalisp authored Nov 4, 2024
    Configuration menu
    Copy the full SHA
    edff1c5 View commit details
    Browse the repository at this point in the history
  10. Merge pull request #56 from BigRoy/feature/AY-6789_Render-instance-su…

    …pport-of-Frame-List-fusion
    
    Refactor Fusion submitter + minor code cosmetic changes
    kalisp authored Nov 4, 2024
    Configuration menu
    Copy the full SHA
    18f5146 View commit details
    Browse the repository at this point in the history
  11. Added group to Publisher UI

    kalisp committed Nov 4, 2024
    Configuration menu
    Copy the full SHA
    b5f178b View commit details
    Browse the repository at this point in the history
  12. Merge remote-tracking branch 'origin/feature/AY-6789_Render-instance-…

    …support-of-Frame-List' into feature/AY-6789_Render-instance-support-of-Frame-List
    kalisp committed Nov 4, 2024
    Configuration menu
    Copy the full SHA
    84783e8 View commit details
    Browse the repository at this point in the history
  13. Fix limit group placeholder

    kalisp committed Nov 4, 2024
    Configuration menu
    Copy the full SHA
    124d715 View commit details
    Browse the repository at this point in the history
  14. Fix empty plugin info

    kalisp committed Nov 4, 2024
    Configuration menu
    Copy the full SHA
    42658bc View commit details
    Browse the repository at this point in the history
  15. Implemented enum fields and querying for them

    Implemented groups, machines, limit_groups
    kalisp committed Nov 4, 2024
    Configuration menu
    Copy the full SHA
    d202aaf View commit details
    Browse the repository at this point in the history
  16. Fix removing job_info

    kalisp committed Nov 4, 2024
    Configuration menu
    Copy the full SHA
    13c80ec View commit details
    Browse the repository at this point in the history

Commits on Nov 5, 2024

  1. Formatting added last empty line

    Co-authored-by: Roy Nieterau <[email protected]>
    kalisp and BigRoy authored Nov 5, 2024
    Configuration menu
    Copy the full SHA
    2cb890a View commit details
    Browse the repository at this point in the history
  2. Fix removal of job_info

    Co-authored-by: Mustafa Jafar <[email protected]>
    kalisp and MustafaJafar authored Nov 5, 2024
    Configuration menu
    Copy the full SHA
    f3db2b5 View commit details
    Browse the repository at this point in the history
  3. Fix use keyword argument

    Applicable for Houdini
    
    Co-authored-by: Mustafa Jafar <[email protected]>
    kalisp and MustafaJafar authored Nov 5, 2024
    Configuration menu
    Copy the full SHA
    7cf4c72 View commit details
    Browse the repository at this point in the history
  4. Fix usage of keyword argument

    kalisp committed Nov 5, 2024
    Configuration menu
    Copy the full SHA
    193ea1c View commit details
    Browse the repository at this point in the history
  5. Fix sending of machine_list

    kalisp committed Nov 5, 2024
    Configuration menu
    Copy the full SHA
    8526e5a View commit details
    Browse the repository at this point in the history
  6. Fix removal job_info

    kalisp committed Nov 5, 2024
    Configuration menu
    Copy the full SHA
    3b03400 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    bd3010f View commit details
    Browse the repository at this point in the history

Commits on Nov 6, 2024

  1. Configuration menu
    Copy the full SHA
    9fcc50a View commit details
    Browse the repository at this point in the history
  2. Fix typo

    kalisp committed Nov 6, 2024
    Configuration menu
    Copy the full SHA
    3b81896 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    3d6778c View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    73b3400 View commit details
    Browse the repository at this point in the history
  5. Transformed CelAction to AbstractSubmitDeadline

    Untested!
    kalisp committed Nov 6, 2024
    Configuration menu
    Copy the full SHA
    19639fb View commit details
    Browse the repository at this point in the history
  6. Replaced attr with dataclass

    kalisp committed Nov 6, 2024
    Configuration menu
    Copy the full SHA
    389fef8 View commit details
    Browse the repository at this point in the history

Commits on Nov 7, 2024

  1. Refactored names of getters

    Added typing
    kalisp committed Nov 7, 2024
    Configuration menu
    Copy the full SHA
    051d8e2 View commit details
    Browse the repository at this point in the history
  2. Removed unneeded comment

    kalisp committed Nov 7, 2024
    Configuration menu
    Copy the full SHA
    1461ffd View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    2f58203 View commit details
    Browse the repository at this point in the history
  4. Reformatted docstrings

    kalisp committed Nov 7, 2024
    Configuration menu
    Copy the full SHA
    7cdc12e View commit details
    Browse the repository at this point in the history
  5. Added docstrings

    kalisp committed Nov 7, 2024
    Configuration menu
    Copy the full SHA
    1e39873 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    318fac0 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    d6378a3 View commit details
    Browse the repository at this point in the history
  8. Fix typo

    kalisp committed Nov 7, 2024
    Configuration menu
    Copy the full SHA
    3cbecec View commit details
    Browse the repository at this point in the history
  9. Refactored getter names

    kalisp committed Nov 7, 2024
    Configuration menu
    Copy the full SHA
    675a335 View commit details
    Browse the repository at this point in the history
  10. Refactored use of cls

    kalisp committed Nov 7, 2024
    Configuration menu
    Copy the full SHA
    0a42400 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    403d577 View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    ba7293d View commit details
    Browse the repository at this point in the history
  13. Fix typo

    kalisp committed Nov 7, 2024
    Configuration menu
    Copy the full SHA
    86ddfb8 View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    6686f41 View commit details
    Browse the repository at this point in the history
  15. Removed env_search_replace_values and env_allowed_keys

    It seems obsolete and not really useful to push through artist values of environment variables.
    Possible filtering of env vars should be handled in `extractenvironments`
    kalisp committed Nov 7, 2024
    Configuration menu
    Copy the full SHA
    118ace2 View commit details
    Browse the repository at this point in the history
  16. Configuration menu
    Copy the full SHA
    b8f3373 View commit details
    Browse the repository at this point in the history
  17. Docstrings

    kalisp committed Nov 7, 2024
    Configuration menu
    Copy the full SHA
    3df6c16 View commit details
    Browse the repository at this point in the history
  18. Added validator for priority

    kalisp committed Nov 7, 2024
    Configuration menu
    Copy the full SHA
    3ebe477 View commit details
    Browse the repository at this point in the history

Commits on Nov 8, 2024

  1. Removed use_gpu from JobInfo

    Used only for Nuke PluginInfo
    kalisp committed Nov 8, 2024
    Configuration menu
    Copy the full SHA
    37dcd72 View commit details
    Browse the repository at this point in the history
  2. Fix pool

    kalisp committed Nov 8, 2024
    Configuration menu
    Copy the full SHA
    d2c0857 View commit details
    Browse the repository at this point in the history
  3. Fix pool

    kalisp committed Nov 8, 2024
    Configuration menu
    Copy the full SHA
    8b7e43a View commit details
    Browse the repository at this point in the history
  4. Merge

    kalisp committed Nov 8, 2024
    Configuration menu
    Copy the full SHA
    39f359d View commit details
    Browse the repository at this point in the history

Commits on Nov 11, 2024

  1. Reordered imports

    kalisp committed Nov 11, 2024
    Configuration menu
    Copy the full SHA
    877542f View commit details
    Browse the repository at this point in the history
  2. Refactored logic

    Co-authored-by: Jakub Trllo <[email protected]>
    kalisp and iLLiCiTiT authored Nov 11, 2024
    Configuration menu
    Copy the full SHA
    286601f View commit details
    Browse the repository at this point in the history
  3. Pass in project_settings

    kalisp committed Nov 11, 2024
    Configuration menu
    Copy the full SHA
    6816382 View commit details
    Browse the repository at this point in the history
  4. Use class variable

    kalisp committed Nov 11, 2024
    Configuration menu
    Copy the full SHA
    397cf34 View commit details
    Browse the repository at this point in the history
  5. Refactored list fields

    kalisp committed Nov 11, 2024
    Configuration menu
    Copy the full SHA
    781bab5 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    5596190 View commit details
    Browse the repository at this point in the history
  7. Fix removing job_info

    Co-authored-by: Mustafa Jafar <[email protected]>
    kalisp and MustafaJafar authored Nov 11, 2024
    Configuration menu
    Copy the full SHA
    1068256 View commit details
    Browse the repository at this point in the history
  8. Fix pool collection

    kalisp committed Nov 11, 2024
    Configuration menu
    Copy the full SHA
    4b9d487 View commit details
    Browse the repository at this point in the history
  9. Merge remote-tracking branch 'origin/feature/AY-6789_Render-instance-…

    …support-of-Frame-List' into feature/AY-6789_Render-instance-support-of-Frame-List
    kalisp committed Nov 11, 2024
    Configuration menu
    Copy the full SHA
    ce69056 View commit details
    Browse the repository at this point in the history
  10. Merge branch 'develop' of https://github.com/ynput/ayon-deadline into…

    … feature/AY-6789_Render-instance-support-of-Frame-List
    kalisp committed Nov 11, 2024
    Configuration menu
    Copy the full SHA
    46a90af View commit details
    Browse the repository at this point in the history

Commits on Nov 13, 2024

  1. Cleaned up plugin Settings

    Removed unnecessary plugins without any configuration possible.
    Disabled submission and collection plugins as it doesn't make sense to have them optional/disabled.
    kalisp committed Nov 13, 2024
    Configuration menu
    Copy the full SHA
    c424311 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    112220e View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    cd81da2 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    9732866 View commit details
    Browse the repository at this point in the history
  5. Use list comprehension for pool enum

    Co-authored-by: Jakub Trllo <[email protected]>
    kalisp and iLLiCiTiT authored Nov 13, 2024
    Configuration menu
    Copy the full SHA
    42148a9 View commit details
    Browse the repository at this point in the history
  6. Use list comprehension for machines enum

    Co-authored-by: Jakub Trllo <[email protected]>
    kalisp and iLLiCiTiT authored Nov 13, 2024
    Configuration menu
    Copy the full SHA
    c9d1c4a View commit details
    Browse the repository at this point in the history
  7. Use list comprehension

    Co-authored-by: Jakub Trllo <[email protected]>
    kalisp and iLLiCiTiT authored Nov 13, 2024
    Configuration menu
    Copy the full SHA
    d58ff4d View commit details
    Browse the repository at this point in the history
  8. Fix condition

    Co-authored-by: Jakub Trllo <[email protected]>
    kalisp and iLLiCiTiT authored Nov 13, 2024
    Configuration menu
    Copy the full SHA
    005a5fb View commit details
    Browse the repository at this point in the history
  9. Fix copy to deepcopy

    Co-authored-by: Jakub Trllo <[email protected]>
    kalisp and iLLiCiTiT authored Nov 13, 2024
    Configuration menu
    Copy the full SHA
    deb8aa8 View commit details
    Browse the repository at this point in the history
  10. Fix formatting

    kalisp committed Nov 13, 2024
    Configuration menu
    Copy the full SHA
    ba26549 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    faa1cba View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    ea9b2d6 View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    a307520 View commit details
    Browse the repository at this point in the history
  14. Fix wrong assignment

    kalisp committed Nov 13, 2024
    Configuration menu
    Copy the full SHA
    7e0ad18 View commit details
    Browse the repository at this point in the history
  15. Fix deepcopy from import

    kalisp committed Nov 13, 2024
    Configuration menu
    Copy the full SHA
    df7a85e View commit details
    Browse the repository at this point in the history
  16. Added deadline to instance families

    That way FARM_FAMILIES could be purged only 'deadline' after all creators would add it.
    kalisp committed Nov 13, 2024
    Configuration menu
    Copy the full SHA
    5c4ebd0 View commit details
    Browse the repository at this point in the history

Commits on Nov 14, 2024

  1. Make frames optional

    Some DCC might not collect that in time
    
    Co-authored-by: Mustafa Jafar <[email protected]>
    kalisp and MustafaJafar authored Nov 14, 2024
    Configuration menu
    Copy the full SHA
    c05ddc2 View commit details
    Browse the repository at this point in the history

Commits on Nov 15, 2024

  1. Fix updates of job_info between jobs

    Co-authored-by: Mustafa Jafar <[email protected]>
    kalisp and MustafaJafar authored Nov 15, 2024
    Configuration menu
    Copy the full SHA
    d3cbe0b View commit details
    Browse the repository at this point in the history
  2. add missing import

    MustafaJafar committed Nov 15, 2024
    Configuration menu
    Copy the full SHA
    269b943 View commit details
    Browse the repository at this point in the history
  3. remove unused import

    MustafaJafar committed Nov 15, 2024
    Configuration menu
    Copy the full SHA
    fa9327c View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    3aa671c View commit details
    Browse the repository at this point in the history