Browse Source

[python] Add server port to python gateway server properties (#8643)

In version 2.0.4, python gateway server do not have entrypoint
to change server port. users have to add config keyword
`server.port` in `python-gateway.properties` by themself. We
should add default key and value to `python-gateway.properties`
make users change easier.

close: #8642
2.0.7-release
Jiajie Zhong 3 years ago committed by GitHub
parent
commit
ac5c3936ee
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      dolphinscheduler-python/src/main/resources/python-gateway.properties

3
dolphinscheduler-python/src/main/resources/python-gateway.properties

@ -15,6 +15,9 @@
# limitations under the License.
#
# Spring boot application server port
server.port=54321
# The address of Python gateway server start. Set its value to `0.0.0.0` if your Python API run in different
# between Python gateway server. It could be be specific to other address like `127.0.0.1` or `localhost`
#gateway.server.address=0.0.0.0

Loading…
Cancel
Save