Skip to content

Commit

Permalink
Merge pull request #304 from whdalsrnt/master
Browse files Browse the repository at this point in the history
fix: fix bug query when syncing costs
  • Loading branch information
whdalsrnt authored Oct 16, 2024
2 parents 35f1ffe + af70448 commit 00e5ea6
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 00e5ea6

Please sign in to comment.