Skip to content

Commit

Permalink
fix: fix bug query when syncing costs
Browse files Browse the repository at this point in the history
Signed-off-by: Jongmin Kim <[email protected]>
  • Loading branch information
whdalsrnt committed Oct 16, 2024
1 parent 35f1ffe commit af70448
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/spaceone/cost_analysis/service/job_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -820,7 +820,7 @@ def _delete_changed_cost_data(
{"k": "billed_month", "v": start, "o": "gte"},
{"k": "data_source_id", "v": job_vo.data_source_id, "o": "eq"},
{"k": "domain_id", "v": job_vo.domain_id, "o": "eq"},
{"k": "job_id", "v": job_id, "o": "not"},
{"k": "job_id", "v": job_id, "o": "eq"},
],
"hint": "COMPOUND_INDEX_FOR_SYNC_JOB_2",
}
Expand Down

0 comments on commit af70448

Please sign in to comment.