Skip to content

Commit 45da68f

Browse files
committed
Make crudLoop private
1 parent 11ef604 commit 45da68f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/powersync_core/lib/src/streaming_sync.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ class StreamingSyncImplementation implements StreamingSync {
136136
try {
137137
_abort = AbortController();
138138
clientId = await adapter.getClientId();
139-
crudLoop();
139+
_crudLoop();
140140
var invalidCredentials = false;
141141
while (!aborted) {
142142
_updateStatus(connecting: true);
@@ -177,7 +177,7 @@ class StreamingSyncImplementation implements StreamingSync {
177177
}
178178
}
179179

180-
Future<void> crudLoop() async {
180+
Future<void> _crudLoop() async {
181181
await _uploadAllCrud();
182182

183183
// Trigger a CRUD upload whenever the upstream trigger fires

0 commit comments

Comments
 (0)