Skip to content

Commit 456a5c8

Browse files
fixup! chore(organization): sync organization data into firebase.
1 parent 3eefbba commit 456a5c8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

apps/project/firebase.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ def push_organization_to_firebase(organization_id: int):
7171
else:
7272
if fb_organization is None:
7373
logger.error(
74-
"push_to_firebase found did not find organization in firebase when updating a organization",
74+
"push_to_firebase did not find organization in firebase when updating a organization",
7575
extra=log_extra({"organization": organization.pk}),
7676
)
7777
raise InvalidOrganizationPushException

project_types/base/project.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -384,7 +384,7 @@ def push_to_firebase(self):
384384
else:
385385
if fb_project is None:
386386
logger.error(
387-
"push_to_firebase found did not find project in firebase when updating a project",
387+
"push_to_firebase did not find project in firebase when updating a project",
388388
extra=log_extra({"project": self.project.pk}),
389389
)
390390
raise InvalidProjectPushException

0 commit comments

Comments
 (0)