Skip to content

Commit

Permalink
Merge pull request #279 from NASA-IMPACT/debug_bucket_option
Browse files Browse the repository at this point in the history
Fix incorrectly removed gibs_outputbucket arguments.
  • Loading branch information
sharkinsspatial authored May 7, 2024
2 parents a76ef90 + 6277627 commit 240c301
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions stack/stack.py
Original file line number Diff line number Diff line change
Expand Up @@ -639,6 +639,7 @@ def __init__(self, scope: core.Construct, id: str, **kwargs) -> None:
pr2mgrs=self.pr2mgrs_lambda,
mgrs_logger=self.mgrs_logger,
get_random_wait=self.get_random_wait,
gibs_outputbucket=GIBS_OUTPUT_BUCKET,
)

self.landsat_mgrs_step_function_historic = LandsatMGRSStepFunction(
Expand All @@ -653,6 +654,7 @@ def __init__(self, scope: core.Construct, id: str, **kwargs) -> None:
pr2mgrs=self.pr2mgrs_lambda,
mgrs_logger=self.mgrs_logger,
get_random_wait=self.get_random_wait,
gibs_outputbucket=GIBS_OUTPUT_BUCKET,
)

self.landsat_mgrs_partials_step_function_historic = (
Expand All @@ -668,6 +670,7 @@ def __init__(self, scope: core.Construct, id: str, **kwargs) -> None:
pr2mgrs=self.pr2mgrs_lambda,
mgrs_logger=self.mgrs_logger,
get_random_wait=self.get_random_wait,
gibs_outputbucket=GIBS_OUTPUT_BUCKET,
)
)

Expand Down

0 comments on commit 240c301

Please sign in to comment.