Skip to content
Open
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
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ Please view the wiki for usage, information, HOWTO, etc https://github.com/Netfl

Here are some links to help you learn more about the Zuul Project. Feel free to PR to add any other info, presentations, etc.


---

Articles from Netflix:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
import com.netflix.zuul.filters.http.HttpInboundSyncFilter;
import com.netflix.zuul.message.http.HttpQueryParams;
import com.netflix.zuul.message.http.HttpRequestMessage;
import lombok.NonNull;

/**
* This is an abstract filter that will route requests that match the patternMatches() method to a debug Eureka "VIP" or
Expand Down Expand Up @@ -71,7 +72,7 @@ public boolean shouldFilter(HttpRequestMessage request) {


@Override
public HttpRequestMessage apply(HttpRequestMessage request) {
public HttpRequestMessage apply(@NonNull HttpRequestMessage request) {
DynamicStringProperty routeVip = new DynamicStringProperty(ZuulConstants.ZUUL_DEBUG_VIP, null);
DynamicStringProperty routeHost = new DynamicStringProperty(ZuulConstants.ZUUL_DEBUG_HOST, null);

Expand Down