Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

GitHub-issue#253 : Implemented GeoIP processor functionality #2925

Merged
Changes from 1 commit
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
eff06fc
GitHub-issue#253 : Implemented GeoIP processor functionality
venkataraopasyavula Jun 22, 2023
b8b3717
GitHub-issue#253 : Implemented GeoIP processor functionality
venkataraopasyavula Jun 23, 2023
a7806fe
GitHub-issue#253 : Implemented GeoIP processor functionality
venkataraopasyavula Jun 23, 2023
a316033
Merge branch 'opensearch-project:main' into geoip-processor-functiona…
venkataraopasyavula Jun 26, 2023
3ff0264
GitHub-issue#253 : Implemented GeoIP processor functionality
venkataraopasyavula Jun 26, 2023
1cfe596
GitHub-issue#253 : Implemented GeoIP processor functionality
venkataraopasyavula Jun 26, 2023
48d4049
Merge branch 'geoip-processor-functionality' of https://github.com/ve…
venkataraopasyavula Jun 27, 2023
5c40221
GitHub-issue#253 : Implemented GeoIP processor functionality. Address…
venkataraopasyavula Jun 27, 2023
aa76f42
GitHub-issue#253 : Implemented GeoIP processor functionality. Address…
venkataraopasyavula Jun 27, 2023
abc107b
Merge branch 'opensearch-project:main' into geoip-processor-functiona…
deepaksahu562 Jun 28, 2023
88ad406
GitHub-issue#253 : Fixed the test-case-failed issue.
deepaksahu562 Jun 28, 2023
bca4e3c
Merge branch 'opensearch-project:main' into geoip-processor-functiona…
venkataraopasyavula Jul 3, 2023
25d55be
GitHub-issue#253 : Implemented GeoIP processor functionality. Address…
venkataraopasyavula Jul 3, 2023
e5da094
GitHub-issue#253 : Implemented GeoIP processor functionality. Address…
venkataraopasyavula Jul 3, 2023
456560b
Merge branch 'opensearch-project:main' into geoip-processor-functiona…
venkataraopasyavula Jul 10, 2023
2599461
GitHub-issue#253 : Implemented GeoIP processor functionality. Address…
venkataraopasyavula Jul 10, 2023
a11b8af
GitHub-issue#253 : Implemented GeoIP processor functionality. Address…
venkataraopasyavula Jul 10, 2023
9510e71
GitHub-issue#253 : Implemented GeoIP processor functionality. Address…
venkataraopasyavula Jul 11, 2023
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
Prev Previous commit
Next Next commit
GitHub-issue#253 : Implemented GeoIP processor functionality
Signed-off-by: venkataraopasyavula <venkataraopasyavula@gmail.com>
  • Loading branch information
venkataraopasyavula committed Jun 23, 2023
commit b8b37177d027d5ea9256aaad0389622148095b49
Original file line number Diff line number Diff line change
Expand Up @@ -112,12 +112,6 @@ void doExecuteTest() throws MalformedURLException, NoSuchFieldException, Illegal
}
}

@Test
void prepareForShutdownTest() throws MalformedURLException {
GeoIPProcessor geoIPProcessor = createObjectUnderTest();
assertDoesNotThrow(geoIPProcessor::prepareForShutdown);
}

@Test
void isReadyForShutdownTest() throws MalformedURLException {
GeoIPProcessor geoIPProcessor = createObjectUnderTest();
Expand Down