Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import java.nio.file.Paths

buildscript {
ext {
opensearch_version = System.getProperty("opensearch.version", "3.5.0-SNAPSHOT")
opensearch_version = System.getProperty("opensearch.version", "3.6.0-SNAPSHOT")
buildVersionQualifier = System.getProperty("build.version_qualifier", "")
isSnapshot = "true" == System.getProperty("build.snapshot", "true")
version_tokens = opensearch_version.tokenize('-')
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
package org.opensearch.flowframework.common;

import org.opensearch.Version;
import org.opensearch.common.xcontent.XContentContraints;
import org.opensearch.common.xcontent.XContentConstraints;

/**
* Representation of common values that are used across project
Expand Down Expand Up @@ -60,11 +60,11 @@ private CommonValue() {}
/** The last provisioned time field */
public static final String LAST_PROVISIONED_TIME_FIELD = "last_provisioned_time";
/** Maximum allowed JSON size in bytes (~50MB). */
public static final int MAX_JSON_SIZE = XContentContraints.DEFAULT_MAX_STRING_LEN; // 50000000
public static final int MAX_JSON_SIZE = XContentConstraints.DEFAULT_MAX_STRING_LEN; // 50000000
/** Maximum allowed name length for JSON keys(50000b). */
public static final int MAX_JSON_NAME_LENGTH = XContentContraints.DEFAULT_MAX_NAME_LEN; // 50000
public static final int MAX_JSON_NAME_LENGTH = XContentConstraints.DEFAULT_MAX_NAME_LEN; // 50000
/** Maximum allowed nesting depth for JSON structures. */
public static final int MAX_JSON_NESTING_DEPTH = XContentContraints.DEFAULT_MAX_DEPTH; // 1000
public static final int MAX_JSON_NESTING_DEPTH = XContentConstraints.DEFAULT_MAX_DEPTH; // 1000

/*
* Constants associated with Rest or Transport actions
Expand Down
Loading