We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9486830 commit 0f5e7f3Copy full SHA for 0f5e7f3
2 files changed
mergin/common.py
@@ -30,6 +30,9 @@
30
# maximum size of GPKG file able to upload in one push (in bytes)
31
MAX_UPLOAD_VERSIONED_SIZE = 5 * (1024**3)
32
33
+# Maximum changes uploading to server
34
+MAX_UPLOAD_CHANGES = 100
35
+
36
# default URL for submitting logs
37
MERGIN_DEFAULT_LOGS_URL = "https://g4pfq226j0.execute-api.eu-west-1.amazonaws.com/mergin_client_log_submit"
38
mergin/local_changes.py
@@ -3,10 +3,7 @@
3
from typing import Optional, List, Tuple
4
5
from .utils import is_versioned_file
6
-from .common import MAX_UPLOAD_MEDIA_SIZE, MAX_UPLOAD_VERSIONED_SIZE
7
-
8
-# Maximum changes uploading to server
9
-MAX_UPLOAD_CHANGES = 100
+from .common import MAX_UPLOAD_MEDIA_SIZE, MAX_UPLOAD_VERSIONED_SIZE, MAX_UPLOAD_CHANGES
10
11
12
# The custom exception
0 commit comments