You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Invoke calls specified business logic from the SDK core.
32
32
asyncdef_invoke(invoke_config):
33
33
serialized_config=json.dumps(invoke_config)
34
-
iflen(serialized_config) >MESSAGE_LIMIT:
34
+
iflen(serialized_config.encode()) >MESSAGE_LIMIT:
35
35
raiseValueError(
36
-
f"Message size exceeds the limit of {MESSAGE_LIMIT} bytes.")
36
+
f"message size exceeds the limit of {MESSAGE_LIMIT} bytes, please contact 1Password at [email protected] or https://developer.1password.com/joinslack if you need help.")
Copy file name to clipboardExpand all lines: src/release/RELEASE-NOTES
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -10,4 +10,4 @@
10
10
- **Read SSH keys in Open SSH format**: You can now use a secret reference to fetch a private key in OpenSSH format. For example: `op://vault/<SSH item>/private key?ssh-format=openssh`
11
11
- **Support for more item field types**: You can now create, retrieve, and edit items containing SSH keys, Month-Year and Menu-type fields using the SDK.
12
12
- **Read more field types using secret references**: You can now resolve secret references that point to information stored in Date, Month/Year, Address, and Reference field types.
13
-
- **Improved error messages**: The error messages returned by the SDK were improved to be more clear and actionable.
13
+
- **Improved error messages**: The error messages returned by the SDK were improved to be more clear and actionable.
0 commit comments