Skip to content

Commit

Permalink
change max size of a topic message
Browse files Browse the repository at this point in the history
  • Loading branch information
mk-software-pl committed Oct 11, 2024
1 parent b12834b commit 2ed9d76
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/addTopicDialog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export const DEFAULT_TOPIC_VALUES: TopicFormikValues = {
advancedValues: {
acknowledgement: "LEADER",
trackingEnabled: false,
maxMessageSize: 10240,
maxMessageSize: 102400,
retentionTime: 1,
},
topic: "",
Expand Down
2 changes: 1 addition & 1 deletion src/store/topic.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export class Topic implements TopicModel {
@observable migratedFromJsonType: boolean;
@observable schemaIdAwareSerializationEnabled: boolean;
@observable contentType: ContentType;
@observable maxMessageSize = 10240;
@observable maxMessageSize = 102400;
@observable auth: AuthModel;
@observable createdAt: number;
@observable modifiedAt: number;
Expand Down

0 comments on commit 2ed9d76

Please sign in to comment.