Skip to content

Commit

Permalink
change default version
Browse files Browse the repository at this point in the history
  • Loading branch information
petretiandrea committed Nov 21, 2024
1 parent fd98434 commit a18c9bc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion openapi/activation.openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -445,7 +445,7 @@ components:
pattern: "^[ -~]{1,64}$"
minLength: 1
maxLength: 64
example: "1.0.0-alpha-a.b-c-somethinglong+build.1-aef.1-its-okay"
example: "v1"

# --------------------------------------------------------------------------
# Domain specific basic types.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,13 @@

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import reactor.core.publisher.Hooks;

@SpringBootApplication
public class RtpActivatorApplication {

public static void main(String[] args) {
Hooks.enableAutomaticContextPropagation();
SpringApplication.run(RtpActivatorApplication.class, args);
}

Expand Down

0 comments on commit a18c9bc

Please sign in to comment.